码迷,mamicode.com
首页 > 其他好文 > 详细

animation练习

时间:2020-07-23 22:34:08      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:set   over   伪类   child   tran   for   ima   ati   col   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
.box{
width: 200px;
height: 200px;
/*盒子的边框 宽度 颜色 transparent表示透明 */
border: 10px solid transparent;
/*使盒子成为圆的*/
border-radius: 50%;
/*盒子的左边框颜色*/
border-top-color:red;
/*盒子的左边框宽度*/
border-left-width:0px;
position: relative;
animation: move 2s infinite linear;
}
.box::before{
content: "";
width: 20px;
height: 20px;
background-color: red;
border-radius:50% ;
/*绝对定位*/
position: absolute;
right: 14px;
top: 16px;
}
/*
伪元素和伪类
after before
hover active
CSS3中提出伪类
::后面跟的是伪元素(可以视为虚拟元素,可以用真实元素模拟)
:后面跟的是伪类
状态伪类:hover active(用户触发某个状态时会选中选择器)
伪类选择器:first-child,last-child,nth-child(n)·····用来过滤
*
*/
@keyframes move{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);

}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

animation练习

标签:set   over   伪类   child   tran   for   ima   ati   col   

原文地址:https://www.cnblogs.com/weixin2623670713/p/13367556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!