CSS - właściwości animation
kod |
wynik kodu |
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.box {
width: 200px;
height: 93px;
margin: 50px;
background: url("grafika/auto.jpg") no-repeat;
position: relative;
animation: moveit 5s linear 0.5s infinite alternate;
}
@keyframes moveit {
from {left: 0%;}
to {left: 60%;}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
|
|