搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS3无限转换动画示例- div.cn 基础教程</title> <style> .box { margin: 50px; width:103px; height:130px; background: url("/run/images/octopus.png") no-repeat; position: relative; /* Chrome, Safari, Opera */ -webkit-animation: repeatit 2s linear 0s infinite alternate; /* Standard syntax */ animation: repeatit 2s linear 0s infinite alternate; } /* Chrome, Safari, Opera */ @-webkit-keyframes repeatit { from {left: 0;} to {left: 50%;} } /* Standard syntax */ @keyframes repeatit { from {left: 0;} to {left: 50%;} } </style> </head> <body> <div class="box"></div> </body> </html>
运行结果