Home / Programming MCQs / CSS MCQs / Question
M
Q. What should be written in the blank of the code for JQuery Code Used to Apply CSS3 Animations?
Code: _________ leftmove { 100% { transform: translateX(-70px); opacity: 1; } } _________ rightmove { 100% { transform: translateX(70px); opacity: 1; } } <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>
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Which selector selects the markers of list items?
Whose value targets CSS property?
CSS comments are placed within the ______.
Which CSS property defines the radius of an element's corners?
What will be the output of following CSS code snippet?
Which of the following property is used to change the height of a table?
Discusssion
Login to discuss.