MCQs > IT & Programming > CSS > Which is the best implementation of a continuously rotating animated image in CSS3?

CSS MCQs

Which of the following is the best implementation of a continuously rotating animated image in CSS3?

Answer

Correct Answer: @-webkit-keyframes rotate { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } #rotating img { -webkit-animation-name: rotate; -webkit-animation-duration: 0.5s; -webkit-animation-iteration-count: infinite; animation-timing-function: linear; -webkit- ANIMATION -timing-function: linear; -moz-ANIMATION-timing-function: linear; }

Explanation:

Note: This Question is unanswered, help us to find answer for this one

CSS Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

CSS Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it