Based on jquery horizontal accordion effect, jquery horizontal accordion

Source: Internet
Author: User

Based on jquery horizontal accordion effect, jquery horizontal accordion

The jquery-based horizontal accordion effect is a jquery-based switch between left and right sliding accordion images. As follows:

Download Online Preview source code

As follows:

<Div class = "flash"> <div class = "con"> <ul> <li class = "current ti1"> 

Javascript code:

var timer=null;var i=0;$(function(){    $(".flash .con ul li").mouseover(function(){        clearInterval(timer);    });    $(".flash .con ul li").click(function(){        $(this).stop().animate({width:"970px"},300).siblings().stop().animate({width:"46px"},300)    });    $(".flash .con ul li").mouseout(function(){        timer=setInterval("startMove()",2000)    });    })function startMove(){  i++;  if(i>$(".flash .con ul li").length-1){i=0}  $(".flash .con ul li").stop().eq(i).animate({width:"970px"},300).siblings().stop().animate({width:"46px"},300)};timer=setInterval("startMove()",2000)

Via: http://www.w2bc.com/Article/43486

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.