There are numerous example of sliders made by CSS3
, but almost all of them needs click trigger to change the slide. I wonder if it is possible to make a auto-slider, which continuously and indefinitely change the slides.
For example, consider a structure as
<div class="parent">
<div class="child">
First DIV
</div>
<div class="child">
Second DIV
</div>
<div class="child">
Third DIV
</div>
</div>
with CSS
.parent {
width: 100px;
height: 100px;
overflow: hidden;
}
.child {
width: 100%;
height: 100%;
float: left;
}
can we continueously scroll the child
elements inside the parent
frame?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…