Posts by fronthendy • 744 points
22 posts
-
0
votes1
answer169
viewsQ: How do I use the Youtube API?
I have a page with a video that opens in a modal, I need it to be paused when the modal is hidden. I tried examples I found on other sites but it didn’t work. I need to add some extra file to use…
-
-1
votes1
answer212
viewsQ: PDF Preview with jQuery
I need to display a PDF as if it were a magazine inside an HTML page. The idea is to optimize the visualization of a document that is very heavy (+100 pages). Currently I only have a link that opens…
-
2
votes2
answers2406
viewsQ: Transparent gradient superimposing <div> without losing the "click"
How can I do the image effect below by adding the gradient effect to the footer of <div> without this being done by images using position Absolute? I would also like to maintain the gradient…
-
0
votes0
answers121
viewsQ: Upload with drag and drop?
Is this upload field dragging the file done with HTML5 drag and drog? Do you have to activate something with JS? From what I saw on other sites this field should work as the upload button too.…
-
6
votes3
answers4981
viewsQ: How to customize input file?
I need to customize a file type input, but all the examples I found seem funny and does not work with Multiple, rs You need to look like that: There is a way to do only with CSS?…
-
3
votes1
answer273
viewsA: Mouseover effect td with jquery or css
See if that fits. $( "td" ).hover( function() { $( this ).append( $( "<i class='fa fa-pencil'></i>" ) ); }, function() { $( this ).find( ".fa" ).remove(); } ); table, th, td { border:…
-
4
votes2
answers2611
viewsQ: Is it possible to place a 'pre-image' in the youtube iframe?
I embedded a Youtube video on this site: http://aresdapraca.com.br/ I would like to put an image over the video when it is paused at the beginning. I already did this but it was with the tag…
-
1
votes1
answer106
viewsQ: Urlhashlistener picking up the wrong item (Owl Carousel)
I’m using Owl Carousel on a Landing page. I added some thumbnails, and used Urlhashlistener to associate the thumbnails to the respective image, but the link is opening the wrong image. It seems…
-
2
votes1
answer77
viewsA: Fix footer when user scrolls to widget
$(window).scroll(function () { if ($(window).width() > 992) { var altura = $('#video').offset().top; if ($(this).scrollTop() > altura) { …
-
1
votes1
answer508
viewsQ: How to catch Owl Carousel event
I’m using Owl Carousel in the large image, the thumbnails on the left should work as a controler too, but I don’t know how to catch the 'picture change' slide event. How can I do that?…
-
3
votes1
answer77
viewsQ: Fix footer when user scrolls to widget
I’m making a Landing page that has a footer between sections, and when the user scrolls to that footer it should stay fixed at the bottom. I tried to use scrollToFixed but it behaves like a header,…
-
1
votes0
answers59
viewsQ: Horizontal scrolling on iPhone5
The site opens perfectly on all devices, except on iPhone 4 and 5. In these they are with horizontal scrolling, as if it were bigger than the resolution. http://homologacao.programamaistop.com.br/…
-
0
votes1
answer84
viewsQ: Input with Link to "modal"
I am developing a project with sudoku, and I would like to show a "modal" with the possibilities every time the user clicks on some cell. This site illustrates well what I need:…
-
3
votes1
answer1001
viewsQ: Carousel with touch screen interaction
I have a Carousel that navigation is through the right/left arrows. In mobile, the user must be able to "drag" the Carousel, without using arrows to navigate. I’m wearing the bootstrap cap. I need…
-
2
votes1
answer1511
viewsQ: Responsive menu does not close when selecting element
I made a responsive menu on a one page website. The scrolling part of the page is working normally, but the menu only closes if the user clicks again on the menu icon. I need the menu to close when…
-
3
votes1
answer325
viewsQ: Overflow-x Hidden no body
I added Overflow-x: Hidden on body but it’s not working. overflow Hidden disables scroll, or just hides bar? html, body{ overflow-x: hidden; -webkit-overflow-x: hidden; } /* tentei das duas formas…
-
1
votes1
answer658
viewsQ: How to make the tip of the "balloon of dialogue"?
How do I do this triangle before the numbers tab? You can do this by manipulating the edges?
-
6
votes2
answers970
viewsQ: Input radio that looks checkbox?
I need to do a quiz, and the alternatives are radio inputs, but it looks like custom checkbox. What’s the best way to do that? .tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left >…
-
0
votes1
answer2863
viewsQ: How do you use Bootstrap Popover?
I need to put a "balloon" in the event click the cars or even use the tooltip with mouse over I think the best way is to use the Bootstrap 3 Popover, but I don’t know how to use this element. Any…
-
20
votes2
answers791
viewsQ: How to do Tilt button?
I am using img but it is not a good practice, so I would like to use a button with some css attribute. It is possible?…
-
1
votes2
answers521
viewsQ: How to make race effect?
I need to put an effect on the cars so they can move up to that point when I load the page. You got any Jquery for that? I don’t even know if you have a name for it I also have to put this edge on…
-
4
votes1
answer283
viewsQ: Colorbox responsive
I’m using Colorbox in a project and need to make it responsive. I was able to change the size of all Divs with Media Queries in CSS, but div #colorbox does not change the size! This causes the page…