看看this simple JsFiddle I made,它可以动画显示进入列表的新项目。
但是,动画只影响第一行,而不影响所有行。 我将颜色随机设置,因此当插入新项目时,您实际上可以在其他行上看到“跳转”。
有没有一种方法可以使其仅通过CSS影响所有行?
@keyframes enter {
0% {
transform: translateX(-100%);
margin-left: calc(var(--w) * -1);
}
100% {
transform: translateX(0px);
margin-left: 0
}
}
这是我的动画,这是我的列表项:
.slidepush li {
--w: 50px;
width: var(--w);
height: 50px;
background-color: red;
vertical-align: top;
border: 0;
padding: 0;
margin: 0;
display: inline-block;
}
.enter {
animation: enter 1s;
}
创建了一个管理ul并实现add的简单类:
class SlidePush {
constructor(ulElement) {
this.element = ulElement;
}
add(item) {
this.element.prepend(item.addClass('enter'));
}
}
const sp = new SlidePush($(".slidepush"));
setInterval(() => {//
var colors = ['red', 'blue', 'green', 'black'];
var color = colors[Math.floor(Math.random() * colors.length)];
sp.add($("<li style='background-color:" + color +" !important;'></li>"));
}, 1000);
答案 0 :(得分:3)
您可以考虑使用nth-child
添加动画,因此总是将每行的第一个添加。完成动画后,您还需要删除动画,以便在到达下一行时再次将其添加到同一元素中。
class SlidePush {
constructor(ulElement) {
this.element = ulElement;
}
add(item) {
this.element.prepend(item);
$('.slidepush li:nth-child(4n+1)').addClass('enter');
setTimeout(function(){ $('.slidepush li:nth-child(4n+1)').removeClass('enter') }, 1000);
}
}
const sp = new SlidePush($(".slidepush"));
setInterval(() => {//
var colors = ['red', 'blue', 'green', 'black'];
var color = colors[Math.floor(Math.random() * colors.length)];
sp.add($("<li style='background-color:" + color +" !important;'></li>"));
}, 1200);
div {
--w: 200px;
max-width: var(--w);
}
.slidepush {
list-style: none;
border: 0;
padding: 0;
margin: 0;
display: table;
}
.slidepush li {
--w: 50px;
width: var(--w);
height: 50px;
background-color: red;
vertical-align: top;
border: 0;
padding: 0;
margin: 0;
display: inline-block;
}
.enter {
animation: enter 1s;
position:relative;
z-index:-1;
}
@keyframes enter {
0% {
transform: translateX(-100%);
margin-left: calc(var(--w) * -1);
}
100% {
transform: translateX(0px);
margin-left: 0;
}
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<ul class="slidepush">
</ul>
</div>
答案 1 :(得分:0)
您可以尝试以下代码。
class SlidePush {
constructor(ulElement) {
this.element = ulElement;
}
add(item) {
$('.slidepush li').removeClass('enter');
$('.slidepush li').removeClass('push');
$('.slidepush li:nth-child(4n+1)').addClass('push');
this.element.prepend(item.addClass('enter'));
}
}
const sp = new SlidePush($(".slidepush"));
setInterval(() => { //
var colors = ['red', 'blue', 'green', 'black'];
var color = colors[Math.floor(Math.random() * colors.length)];
sp.add($("<li style='background-color:" + color + " !important;'></li>"));
}, 1000);
div {
--w: 200px;
max-width: var(--w);
}
.slidepush {
list-style: none;
border: 0;
padding: 0;
margin: 0;
display: table;
}
.slidepush li {
--w: 50px;
width: var(--w);
height: 50px;
background-color: red;
vertical-align: top;
border: 0;
padding: 0;
margin: 0;
display: inline-block;
}
.enter {
animation-name: enter;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.push {
animation-name: push;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes push {
0% {
margin-left: calc(var(--w) * -1);
}
100% {
margin-left: 0
}
}
@keyframes enter {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0px);
}
}
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<div>
<ul class="slidepush">
</ul>
</div>