JS implementation of the mobile phone sliding switch to support the rotation of the picture effect of the example _javascript skills

Source: Internet
Author: User

This article illustrates the method of JS to support the mobile phone sliding switch of the effect of the carousel picture. Share to everyone for your reference. Specifically as follows:

The operation effect is as follows:

Full instance code click here to download the site.

Use method Case:

<script type= "Text/javascript" src= ". /src/zepto.js "></script>
<script type=" Text/javascript "src=". /src/carousel-image.js "></script>
<script>
 $ ('. Carousel-image '). Carouselimage ({
  num: $ ('. Carousel-num ')
});
</script>

or Requirejs:

<div class= "Carousel-image" >
<div>
 <a>
  
 </a>
 <a>
  
 </a>
 <a>
  
 </a>
</div>
<div class=" Carousel-num ">
</div >
</div>
<script type= "Text/javascript" src= ". /src/zepto.js "></script>
<script type=" Text/javascript "src=". /src/require.js "></script>
<script>
requirejs.config ({
  //by default load any module IDs from Js/lib
  baseurl: '.. /src ',
  paths: {
   $: ' Zepto '
  }
});
Require ([' Carousel-image ', "$"], function (carouselimage,$) {
  var cs = new Carouselimage ();
  Cs.init ({
   target:$ ('. Carousel-image '),
   num:$ ('. Carousel-num ')
  });
};
</script>

API properties, methods, and callbacks:

Target
indicates that the element within this container triggers the event and that it should have a child-level container for easy animation optimization

Num:
the intention is to display the number of the current index, but now hide the number with a style, if you want to display the number style, you can change the style file

I hope this article will help you with your JavaScript programming.

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.