Results 1 to 5 of 5

Thread: Help me - Create horizontal slider like Window Mobile site

  1. #1
    Join Date
    Oct 2008
    Posts
    3
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Help me - Create horizontal slider like Window Mobile site

    This link : http://www.microsoft.com/windowsmobi...s/default.mspx
    Look at the display slider products ( phones) , can you help me to find out the script for this , i tried to used their script but not work . Please help me , thank a lot

  2. #2
    Join Date
    Jul 2008
    Location
    Serbia
    Posts
    47
    Thanks
    3
    Thanked 1 Time in 1 Post

  3. The Following User Says Thank You to bokanegro For This Useful Post:

    tttt141 (10-21-2008)

  4. #3
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    Might work with your desire:
    HTML Code:
    <script type="text/javascript" src="http://code.jquery.com/nightlies/jquery-nightly.pack.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
    $('.desc').hide(); // Hide the description elements
    $('#myul img').hover(function(){
    	$(this).next().animate({width:'toggle'},'slow');},
    	function(){
    	$(this).next().animate({width:'toggle'},'slow');}
    	)
    });
    </script>
    <style type="text/css">
    ul{list-style-type:none;}
    #myul li{
    float:left}
    #myul li img{
    width:200px;
    height:150px;
    float:left;
    margin:1px;
    }
    #myul .desc{
    background:#eee;
    border:1px solid #222;
    float:left;
    margin:5px 10px;
    height:120px;
    padding:10px;
    }
    </style>
    <ul id="myul">
    <li><img src="http://rangana.moonylist.com/images/Picture7.jpg" alt="myimage">
    <div class="desc">
    This is a description
    </div>
    </li>
    <li><img src="http://rangana.moonylist.com/images/Picture8.jpg" alt="myimage">
    <div class="desc">
    This is a description
    </div>
    </li>
    <li><img src="http://rangana.moonylist.com/images/Picture9.jpg" alt="myimage">
    <div class="desc">
    This is a description
    </div>
    </li>
    </ul>
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

  5. The Following User Says Thank You to rangana For This Useful Post:

    tttt141 (10-21-2008)

  6. #4
    Join Date
    Oct 2008
    Posts
    3
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    thank you very much , i did it ! Both scripts are very nice !

  7. #5
    Join Date
    Oct 2008
    Posts
    3
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    I found another one , share with you
    http://www.leigeber.com/2008/05/hori...ccordion-menu/

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •