是否有人知道如何使用CSS3或JS在“Read it Later”应用程序中使幻灯片向左效果?
onclick - >向左滑动整个div并在滑动的那个下面显示div。
这是一段带有示例的视频:READ IT LATER
答案 0 :(得分:4)
可能是你想要的css3。 的 CSS 强>
.parent{
width:300px;
border:1px solid red;
height:100px;
position:relative;
}
.box{
width:40px;
height:40px;
background:green;
display:block;
z-index:0;
}
.slider{
width:300px;
background:#454545;
color:#fff;
font-weight:bold;
font-size:24px;
height:100px;
position:absolute;
top:0;
right:300px;
transition: right 1s ease;
-moz-transition: right 1s ease; /* Firefox 4 */
-webkit-transition:right 1s ease; /* Safari and Chrome */
-o-transition:right 1s ease; /* Opera */
z-index:1;
}
.box:focus + .slider,.box:active + .slider{
right:0;
}
<强> HTML 强>
<div class="parent">
<a href="#" class="box"></a>
<div class="slider">hello</div>
</div>
<强>已更新强>
答案 1 :(得分:0)