1234567891011121314151617181920212223242526 |
- var mySwiper = new Swiper ('.swiper-container2', {
- loop : true,
- loopedSlides:1,
- autoplay:5500,
- // 如果需要分页器
- pagination: '.swiper-pagination',
- // 如果需要前进后退按钮
- prevButton:'.swiper-button-prev',
- nextButton:'.swiper-button-next',
- slidesPerView :"auto"
- })
- $(function(){
- // 获取视频标签
- var myVid=document.getElementById("dk");
- $('.vide_btn').on('click',function(){
- myVid.play(); //视频播放
- $(this).hide()
- })
- })
|