我正在創建CSS3動畫以使div
從左到右移動無窮大。僅在右側css3動畫延遲
該代碼正在工作,但當div
進入右側時,其延遲時間爲3秒。在左邊,它工作得很好。
這裏是我的代碼:
#najava {
width: 197px;
height: 22px;
border-radius: 2px;
background-color: transparent;
opacity: 0.8;
font-weight: bold;
position: relative;
padding-left: 5px;
padding-right: 5px;
animation: mymove 5s linear 0s infinite alternate-reverse;
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
}
@keyframes mymove {
0% {
left: 0px;
}
100% {
left: 200px;
}
}
@keyframes mymove {
0% {
background-color: transparent;
left: 0px;
right: 0px;
}
33% {
background-color: yellow;
left: 250px;
right: 0px;
}
66% {
background-color: blue;
left: 250px;
right: 250px;
}
100% {
background-color: green;
left: 0px;
right: 250px;
}
}
<div id="najava">
<p>text text text text text</p>
</div>
Syam,謝謝在我身邊工作 whis you you very best – Ivan