htmlcss⾃动滚动代码,使⽤CSS⾃动滚动1.)您⽆法使⽤CSS或纯HTML启动DOM操作.你总是需要⼀种操纵语⾔(⽐如JavaScript)
html滚动效果代码2.)您可以通过覆盖当前CSS来删除按钮,并调整可见性或显⽰标记以使其脱离或(占位)不可见.
最后,你真的需要JavaScript才能触发动态隐藏,并使⽤setIntervals进⾏⾃动滑动.
编辑:
这可能适合您使⽤滑块动画:
#container {
height: 200px;
width: 800px;
border: 1px solid #333;
overflow: hidden;
margin: 25px auto;
}
#box {
background: orange;
height: 180px;
width: 400px;
margin: 10px -400px;
-webkit-animation-name: move;
-webkit-animation-duration: 4s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: right;
-webkit-animation-timing-function: linear;
}
#box:hover {
-webkit-animation-play-state: paused;
}
@-webkit-keyframes move {
0% {
margin-left: -400px;
}
100% {
margin-left: 800px;
}
}
HTML
as
结果
这是仅限WebKit的版本.这些是其他浏览器的等价物:@关键帧:
@-moz-keyframes move {
@-o-keyframes move {
@keyframes move {
在#box内部(只有⼀个属性显⽰为⽰例):
-moz-animation-name: move;
-o-animation-name: move;
animation-name: move;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。