一、实现CSS3无限循环动画代码示例。
代码如下:
CSS:
@-webkit-keyframes gogogo {
0%{
-webkit-transform: rotate(0deg)
border:5px solid red
}
50%{
-webkit-transform: rotate(180deg)
background:black
border:5px solid yellow
}
100%{
-webkit-transform: rotate(360deg)
background:white
border:5px solid red
}
}
.loading{
border:5px solid black
border-radius:40px
width: 28px
height: 188px
-webkit-animation:gogogo 2s infinite linear
margin:100px
}
扩展资料实现动画无限循环所需要的CSS属性说明:
1、infinite
在animation后面加上infinite就可以无限循环,另外还可以做反向循环使用animation-direction
2、animation-name
规定需要绑定到选择器的 keyframe 名称。
3、animation-duration
规定完成动画所花费的时间,以秒或毫秒计。
4、animation-timing-function
规定动画的速度曲线。
5、animation-delay
规定在动画开始之前的延迟。
6、animation-iteration-count
规定动画应该播放的次数。
7、animation-direction
规定是否应该轮流反向播放动画。
简单的动画”复选框设置HTML创建一个标准的无序列表(为了方便测试,特别复制出一份代码)
<ul>
<li>
<input type="checkbox" name="manager" id="manager" />
<label for="manager">Project Manager</label>
</li>
<li>
<input type="checkbox" name="webdesigner" id="webdesigner" />
<label for="webdesigner">Web Designer</label>
</li>
<li>
<input type="checkbox" name="webdev" id="webdev" />
<label for="webdev">Web Developer</label>
</li>
<li>
<input type="checkbox" name="seo" id="seo" />
<label for="seo">SEO</label>
</li>
<li>
<input type="checkbox" name="itstaff" id="itstaff" />
<label for="itstaff">IT Staff</label>
</li>
<li>
<input type="checkbox" name="csr" id="csr" />
<label for="csr">Customer Service Representative</label>
</li>
</ul>
首先,隐藏复选框
/* Hide the Ordinary Checkbox */
input[type="checkbox"] {
display: none
}
然后需要在我们的列表和标签标记的相对位置和填充设置一些样式。
下一步需要使用伪代码在标签之前和之后设置样式。对于这部分,我们将设置复选框Font Awesome,用一个矢量图标。
/* Checkbox Icons */
label {
position: relative
padding-left: 30px
font-size: 30px
cursor: pointer
color: #fff
padding: 16px 28px 0 0
}
label:before, label:after {
font-family: FontAwesome
font-size: 50px
/*absolutely positioned*/
position: absolutetop: 0left: -49pxright: 10px
}
现在我们需要设置图标步骤之前和之后的复选框。
label:before {
content: '\f096'/*checkbox unchecked */
}
label:after {
content: '\f00c'/*checkbox checked*/
max-width: 0
overflow: hidden
opacity: 0.5
font-size: 27px
top: 16px
left: -42px
color: #f2ca27
-webkit-transition: all 0.50s
-moz-transition: all 0.50s
-o-transition: all 0.50s
transition: all 0.50s
}
最后一步是设定一个目标,文本框和复选框后的伪代码,并给它一个最大宽度25像素之间和不透明度1。
/* Animating the Checkbox Icon */
input[type="checkbox"]:checked + label:after {
max-width: 25px
opacity: 1
margin-right: 90px
}