Seamless JS image scrolling

Source: Internet
Author: User

Seamless JS image scrolling:

The effect is as follows:

The results are very beautiful. JS images are very smooth and have special effects on code scrolling, seamless loops, And customizable speeds,


Ideas:

A group of images control its scroll bar and copy the group of images and add them to the original image group. Now there are two groups of images. As you can imagine, the scroll bar continues to scroll. The last image of the Group has been rolled to the top and disappears. The first image of the group that was copied appears after the last image of the source image, now you can feel seamless rolling.

     
     JS image scroll left      
 
 
<Script type = "text/javascript" src = "jquery. js "> </script> <script type =" text/javascript "> // 0: fixed speed var speed = 30; // 1: obtain the Element demo demo1 demo2 var demo =$ ("# demo"); var demo1 =1 ("# demo1"); var demo2 =2 ("# demo2 "); // 2: Copy demo1 --> demo2 var cont = $ ("# demo1" ).html (); $ ("# demo2" ).html (cont); // 3: run function hello () {var left = $ ("# demo") on a scheduled basis "). scrollLeft (); if (left >=$ ("# demo1 "). width () {left = 0 ;}else {left ++ ;}$ ("# demo "). scrollLeft (left); setTimeout ("hello ()", speed) ;}hello (); // move the demo. scrollLeft (); </script>


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.