01-02-2016 Saat: 15:27
(Son Düzenleme: 01-02-2016 Saat: 21:54, Düzenleyen: The Legend.
Sebep: a
)
Basit animasyon kodu.Editlenebilir.
Alıntıdır.
Kod:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").animate({left: '250px'});
});
});
</script>
</head>
<body>
<button>Animasyona Başla!</button>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>
Önizlemek için
onizle.koddostu.com
Alıntıdır.