JSFiddle - React, Tailwind, and code Playground
by teknoblogo
HTML
<img src="http://i55.tinypic.com/5dnecg.jpg" class="kaydir">
<img src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" class="logo">
<img src="http://www.hcsnet.edu.au/files2/arch/logos/red/HCSNet_logo_small_RED_transparent.png" id="2" width="295" height="313">
CSS
img {
position : absolute;
}
.logo {
top : 50px;
left : 20px;
}
#2 {
top : 80px;
left : 6000px;
}
JavaScript
$(document).ready(function() {
$(".kaydir").animate({
"left": "-=500px"
}, 90000);
$(".logo").animate({
"left": "+=500px"
}, 900000);
$("#2").animate({
"left": "-=50px"
}, 90000);
});