Posts by Israel • 27 points
4 posts
-
0
votes1
answer213
viewsA: Container div height relative to page size?
Good night Erick, all right? Cara, I don’t know if I really understand your question, but I believe that the solution to your problem is to put css in the container div "height:100vh;
-
1
votes1
answer2264
viewsQ: Scroll Soft Bootstrap
$(document).ready(function() { $(".scroll").click(function(e){ event.preventDefault(); $('html,body').animate({scrollTop:$(this.hash).offset().top},1000); }); }); .menu{background:#ff0;}…
-
1
votes1
answer235
viewsQ: Full screen overlay with menu
Talk guys, all right? I’m having a hard time making the effect of Full Screen Overlay, in this effect I use CSS and Jquery. The effect consists of opening a div overlay, when I click the menu button…
-
0
votes2
answers2311
viewsQ: How to Make Dropdown Menu with Pop-up Effect
$(function () { $(".menu2").hide(); $(".open").stop(true, true).mouseover(function() { $(".menu2").fadeIn(100).animate({ top: '-50' }, 400); }); $(".open").mouseleave(function() {…