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.