Suggestion Box
animation-delay

My web error like this
my web: u can see:
CSS Syntax
animation-delay: time | initial | inherit;

Cấu trúc:


<div></div>

<style> 
 div {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
    animation: mymove 5s infinite;
    animation-delay: -2s;
    -webkit-animation: mymove 5s infinite; 
    -webkit-animation-delay: -2s;

}
@-webkit-keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}

@keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}

</style>
My web error like this my web: u can see: **CSS Syntax** animation-delay: time | initial | inherit; **C&acirc;́u trúc**: ```` &lt;div&gt;&lt;/div&gt; &lt;style&gt; div { width: 100px; height: 100px; background: red; position: relative; animation: mymove 5s infinite; animation-delay: -2s; -webkit-animation: mymove 5s infinite; -webkit-animation-delay: -2s; } @-webkit-keyframes mymove { from {left: 0px;} to {left: 200px;} } @keyframes mymove { from {left: 0px;} to {left: 200px;} } &lt;/style&gt; ````
edited Apr 5 '16 at 12:28 am
94
0
1
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft