JQuery-implemented left-right moving focus chart effect _ jquery

Source: Internet
Author: User
This article mainly introduces the effects of jQuery's left-right moving focus graph, and involves some tips on jQuery's combination of time functions to respond to mouse events and dynamically operate on page element styles, if you need it, refer to the example in this article to describe the left and right moving focus graph implemented by jQuery. We will share this with you for your reference. The details are as follows:

Jquery section:

$(function () {  var _speed = 1000;  var _len = 0;  var _size = 150;  var _direction = 'left';  function mar(){    if(_direction == 'left'){      if(_len >= 450){       _direction = 'right';      }else{       $(".flow ul").animate({"margin-left":"-=" + _size + "px"});       _len += _size;      }    }else{      if(_len <= 0){       _direction = 'left';      }else{       $(".flow ul").animate({"margin-left":"+=" + _size + "px"});       _len -= _size;      }    }  }  var _go = setInterval(mar,_speed);  $("#pic_left").click(function (){   _direction = 'left';  });  $("#pic_right").click(function (){   _direction = 'right';  });  $(".flow li").mouseover(function (){    clearInterval(_go);  }).mouseout(function (){    _go = setInterval(mar,_speed);  });});

Html section

left

right

Related Article

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.