Learn JQuery Simple Mode

Sory gan ane makenya bahasa english yah buat sekalian belajar...
Ok Guys.... mybe this exaple very more simple..... we try learn togethe for JQuery sintax. On The example it is move boll animation.
So.... enjoy ajah... :D

---------------------------------------------------------------------------------------------------
<html>
<head>
<title>BOLA BERJALAN</title>
<script type="text/javascript" src="jquery-1.5.1.min.js"></script>

<script type="text/javascript">
$(document).ready(function(){
  $(".jalan").click(function(){
 $("#bola").animate({left:"1000px"}, 8000, "swing");
 });
  $(".balik").click(function(){
 $("#bola").animate({left:"0px"});
 });
$(".stop").click(function(){
 $("#bola").animate({posision:"relative"});
 });
 
  });
</script>
<style type="text/css">
#bola{
position: relative;
}
</style>
</head>
<body>
<img id="bola" src="gb/bola.png"/>
<br/><br />
<center><button class="jalan">Jalan</button> &nbsp;&nbsp; <button class="stop">Stop</button> &nbsp;&nbsp;
        <button class="balik">Balik</button></center>
</body>   
</html>
-------------------------------------------------------------------
Share on Google Plus

About Elmirakom

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment