Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Rotation:
<!DOCTYPE html>
<html>
<head>
<title>Вращение картинки</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
.rtimg{
-webkit-animation: img 2s infinite linear;
animation: img 2s infinite linear;
}
@keyframes img {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
</style>
</head>
<body>
<img src="img_1.jpg" class="rtimg">
</body>
</html>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question