• 22-10-2013, 16:26:07
    #1
    Merhaba arkadaşlar

    http://www.lightingdesigninternational.com şöyle bir site var full flash benım aradığım ise ilk açıldığında sağdan sola kayan 2 şerit.

    Bunu yapacak olan arkadaşa hizliyemek.net domainimi veriyorum veya vestelurunleri.com
  • 22-10-2013, 17:32:02
    #2
    <!doctype html>
    <html lang="en">
    <head>
      <meta charset="utf-8">
      <title>animate demo</title>
      <style>
      div.block {
        position: absolute;
    	left: 650px;
        background-color: #abc;
        width: 300px;
        height: 40px;
        float: left;
        margin: 5px;
      }
        div.block1 {
        position: absolute;
    	left: 650px;
    	top: 150px;
        background-color: #abc;
        width: 300px;
        height: 40px;
        float: left;
        margin: 5px;
      }
      </style>
      <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    </head>
    <body>
     
    <p><button id="go">Getir</button></p>
    <div class="block"></div>
    <div class="block1"></div>
    
     
    <script>
    $( "#go" ).click(function() {
      $( "div" ).animate({
        left: 150
      });
    });
    </script>
     
    </body>
    </html>
    Kendine göre ayarla. Biraz css bilgiside gerekli.