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
Q. The CSS property used to set the maximum width of the element's content box is -
Q. Which of the following property assigns a graphic image to a list item?
Q. How to write a comment in CSS?
Q. Where do we store external stylesheets?
Q. You should always define a backup font-family in CSS.
Q. Which of the following value specifies a solid outline?
Discusssion
Login to discuss.