What should be written in the blank of the code for JQuery Code Used to Apply CSS3 Animations?
CSS Code:_________ leftmove {100% { transform: translateX(-70px); opacity: 1; }}_________ rightmove {100% { transform: translateX(70px); opacity: 1; }}
jQuery Code:<script>$(function() {var footerBottom = $("#articlefooter").offset().top + $("#articlefooter").height();$(window).scroll(function() {if ($(this).scrollTop() > (footerBottom - $(window).height())) {131$("#prevpage").css('animation', 'leftmove 1s 2s forwards');$("#nextpage").css('animation', 'rightmove 1s 1s forwards');});});</script>

What should be written in the blank of the code for JQuery Code Used to Apply CSS3 Animations?

CSS Code:_________ leftmove {100% { transform: translateX(-70px); opacity: 1; }}_________ rightmove {100% { transform: translateX(70px); opacity: 1; }}
jQuery Code:<script>$(function() {var footerBottom = $("#articlefooter").offset().top + $("#articlefooter").height();$(window).scroll(function() {if ($(this).scrollTop() > (footerBottom - $(window).height())) {131$("#prevpage").css('animation', 'leftmove 1s 2s forwards');$("#nextpage").css('animation', 'rightmove 1s 1s forwards');});});</script>
Correct Answer @keyframes

Related Questions

What is the value of var? $var = 'HELLO WORLD!'; $var = ucfirst($var);
If A = x% of y and B = y% of x, then which of the following is true?
Laplace transform of the function f(t) is given by $${\text{F}}\left( {\text{s}} \right) = {\text{L}}\left\{ {{\text{f}}\left( {\text{t}} \right)} \right\} = \int_0^\infty {{\text{f}}\left( {\text{t}} \right){{\text{e}}^{ - {\text{st}}}}{\text{dt}}{\text{.}}} $$       Laplace transform of the function shown below is given by
Transform Theory mcq question image