Note that there are some explanatory texts on larger screens.

plurals
  1. POjquery next() function not working correctly
    primarykey
    data
    text
    <p>I have a css animation that does two things, one adds an opacity and two creates a slideUp animation when the user hovers on the specified area. I am having an issue with adding and removing the opacity. I am not sure where i have gone wrong. Below is a snippet of my code. </p> <p>html</p> <pre><code>&lt;body id="body" class="preload"&gt; &lt;div class="box"&gt; &lt;div class="trigger"&gt;hhh&lt;/div&gt; &lt;div class="overlay animated"&gt; &lt;h1&gt;box 1&lt;/h1&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="box"&gt; &lt;div class="trigger"&gt;hhh&lt;/div&gt; &lt;div class="overlay animated"&gt; &lt;h1&gt;box 1&lt;/h1&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>js </p> <pre><code> &lt;script type="text/javascript"&gt; $("window").load(function(){ $("#body").removeClass("preload"); }); $(".trigger").hover(function(){ var $this = $(this); $this.next(".overlay").removeClass("fadeInDown", 1000).addClass("fadeInUp", 1000); }); $(".trigger").mouseleave(function(){ var $this = $(this); $this.next(".overlay").removeClass("fadeInUp", 1000).addClass("fadeInDown", 1000); }); $(".box").hover(function(){ var $this = $(this); $this.next(".copy-bg").addClass("opacity"); }); $(".box").mouseleave(function(){ var $this = $(this); $this.next(".copy-bg").removeClass("opacity"); }); &lt;/script&gt; </code></pre> <p>css</p> <pre><code>.trigger{ width:100%; height: 100%; position: relative; } .box{ width: 300px; height: 300px; background: red; @include inline-block; margin: 0 2px; position: relative; overflow: hidden; } .overlay{ height: 100%; width: 100%; bottom: -200px; position: absolute; h1{ color: #fff; } } .copy-bg{ @include opacity(0.50); width: 100%; height: 100%; background: #000; position: absolute; display: none; } .opacity{ display: block; } .copy{ position: absolute; top: 0; } .animated{ @include transition-duration(1s ease); -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; -o-animation-fill-mode: both; } .animated.hinge{ @include transition-duration(1s); } .fadeInUp{ -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; display: block; } .animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}@-webkit-keyframes fadeInUp { 0% { opacity: 1; -webkit-transform: translateY(0); } 100% { opacity: 1; -webkit-transform: translateY(-200px); } </code></pre> <p>}</p> <pre><code> @-moz-keyframes fadeInUp { 0% { opacity: 1; -moz-transform: translateY(20px); } 100% { opacity: 1; -moz-transform: translateY(0); } } @-o-keyframes fadeInUp { 0% { opacity: 1; -o-transform: translateY(20px); } 100% { opacity: 1; -o-transform: translateY(0); } } @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } .fadeInUp { -webkit-animation-name: fadeInUp; -moz-animation-name: fadeInUp; -o-animation-name: fadeInUp; animation-name: fadeInUp; } @-webkit-keyframes fadeInDown { 0% { opacity: 1; -webkit-transform: translateY(-200px); } 100% { opacity: 1; -webkit-transform: translateY(0); } } @-moz-keyframes fadeInDown { 0% { opacity: 0; -moz-transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); } } @-o-keyframes fadeInDown { 0% { opacity: 0; -o-transform: translateY(-20px); } 100% { opacity: 1; -o-transform: translateY(0); } } @keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } .fadeInDown { -webkit-animation-name: fadeInDown; -moz-animation-name: fadeInDown; -o-animation-name: fadeInDown; animation-name: fadeInDown; } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload