1、css动画写幻灯片
html
<div class="mydiv"></div>
css
.mydiv{
height:500px;
width:800px;
-webkit-animation-name:'loop';
-webkit-animation-duration:20s;
-webkit-animation-iteration-count:infinite;
}
@-webkit-keyframes loop{
0%{background:url('');}
50%{background:url('');}
100%{background:url('');}
}
2、input的~placeholder样式
本文介绍如何使用CSS实现幻灯片动画效果,包括设置div元素的高度、宽度及无限循环播放背景图片切换动画,并讲解input元素的placeholder属性样式调整方法。
2295

被折叠的 条评论
为什么被折叠?



