zoukankan
html css js c++ java
CSS3动画效果示例
CSS3动画遵循@kwyframes规则,规定了动画的名称、时长。
1、示例代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS3动画示例</title>
<style>
*{margin: 0;padding: 0}
section{100px;height: 100px;
background-color: coral;
position: relative;
animation: anim 3s infinite alternate;
-webkit-animation:anim 3s infinite alternate;
-moz-animation: anim 3s infinite alternate;
-o-animation: anim 3s infinite alternate;
margin: 50px auto; }
@keyframes anim {
0%{background-color: red;left: 0;top: 0;}
25%{background-color: green;left: 100px;top: 0;}
50%{background-color: blue;left: 100px;top: 100px;}
75%{background-color: yellow;left: 0;top: 100px;}
100%{background-color: purple;left: 0;top: 0;}
}
@-webkit-keyframes anim {
0%{background-color: red;left: 0;top: 0;}
25%{background-color: green;left: 100px;top: 0;}
50%{background-color: blue;left: 100px;top: 100px;}
75%{background-color: yellow;left: 0;top: 100px;}
100%{background-color: purple;left: 0;top: 0;}
}
@-moz-keyframes anim {
0%{background-color: red;left: 0;top: 0;}
25%{background-color: green;left: 100px;top: 0;}
50%{background-color: blue;left: 100px;top: 100px;}
75%{background-color: yellow;left: 0;top: 100px;}
100%{background-color: purple;left: 0;top: 0;}
}
@-o-keyframes anim {
0%{background-color: red;left: 0;top: 0;}
25%{background-color: green;left: 100px;top: 0;}
50%{background-color: blue;left: 100px;top: 100px;}
75%{background-color: yellow;left: 0;top: 100px;}
100%{background-color: purple;left: 0;top: 0;}
}
</style>
</head>
<body>
<section></section>
</body>
</html>
2.示例动画效果
查看全文
相关阅读:
初级算法
初级算法
LeetCode刷题
win32
Hexo
网络上收集的C++常见面试题
Direct2D CreateBitmap的使用
hdu4560 不错的建图,二分最大流
hdu4560 不错的建图,二分最大流
poj1182 and 携程预赛2第一题 带权并查集
原文地址:https://www.cnblogs.com/qikeyishu/p/7394050.html
最新文章
Linux基操:yum安装docker
多测师肖sir__金牌高级讲师软件测试___ps之安装(001)
肖sir_多测师 _高级讲师 _功能面试题笔试题
多测师肖sir__金牌讲师__讲解rf__接口测试(1)
多测师肖sir_高级金牌讲师__python之模块time格式输出详解
多测师肖sir_高级金牌讲师__python之模块json模块
centos7部署elk日志系统
windows下添加elasticsearch、logstash、kibana为后台服务
缓存穿透、缓存击穿、缓存雪崩区别及解决方案
php清除字符串中HTML代码、空格、回车换行符
热门文章
Windows系统搭建ELK日志收集服务器
Windows系统+ELK+Logback 搭建日志收集服务器
常用加密解密在线网站
YII2项目常用技能知识总结
域名访问省略index.php
[整理]NOIP 2020题解
【GMOJ4496】互补约数
win32
初级算法
初级算法
Copyright © 2011-2022 走看看