Videojs+swiper realizes Taobao product details carousel

Videojs+swiper realizes Taobao product details carousel

This article shares the specific code of videojs+swiper to realize the carousel of Taobao product details for your reference. The specific content is as follows

This one references videojs and swiper. The effect is similar to the carousel pictures in Taobao product details, and the first carousel is a video:
When the video starts playing, the carousel stops. When the video is paused, the carousel continues.
When the video is playing, when you slide to the next slide, the video will pause.

swiper manual

HTML part:

<!-- swiper carousel-->
<div class="swiper-container">
   <div class="swiper-wrapper">
       <div class="swiper-slide">
           <video id="video" style="width: 100%;height: 100%;" controls preload="none" poster="xxxx" class="video-js vjs-big-play-centered" >
            <source src="xxxx" type="video/mp4">
           </video>
       </div>
       <div class="swiper-slide"><img src="xxxx" alt=""></div>
        <div class="swiper-slide"><img src="xxxx" alt=""></div>
        <div class="swiper-slide"><img src="xxxx" alt=""></div>
        <div class="swiper-slide"><img src="xxxx" alt=""></div>
   </div>
   <!-- If you need a pager -->
   <div class="swiper-pagination"></div>
</div>

js part:

//Create a new videojs object var player = videojs('video', {
     muted: true,
     controls: true,
     // loop: true,
 });

 // swiper carousel var mySwiper = new Swiper ('.swiper-container', {
     direction:'horizontal', // The direction of the slideshow, can also be vertical loop: true, // loop play autoplay:3000, // slide automatic switching time speed:2000, // slide sliding animation time height: 100,
     pagination: '.swiper-pagination', // If you need a paginator, that is, the small dot below autoplayDisableOnInteraction : false, // In this way, even if we slide, the timer will not be cleared offsetWidth: 0,
     observer:true, //Monitor // When swiper transitions from one slide to another, execute: stop video playback (here is swiper3, swiper4 is written differently)
     onSlideChangeStart: function(swiper){
          player.pause();
     }
 });


 //Stop the carousel while the video is playingplayer.on('play',function(){
     // console.log(mySwiper)
     mySwiper.stopAutoplay()
 });

 // When the video is paused, the carousel continues player.on('pause', function(){
     mySwiper.startAutoplay()
 });

The js and css of swiper and videojs are not introduced here, you can search them on Baidu.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JavaScript to achieve Taobao product image switching effect
  • javascript to realize product image magnifying glass
  • JavaScript implements product details of e-commerce platform

<<:  How to delete garbled or special character files in Linux

>>:  MySQL Order By Multi-Field Sorting Rules Code Example

Recommend

Detailed explanation of VUE's data proxy and events

Table of contents Review of Object.defineProperty...

Detailed explanation of how Zabbix monitors the master-slave status of MySQL

After setting up the MySQL master-slave, you ofte...

Detailed steps to build an NFS file sharing server in Linux

Linux builds NFS server In order to achieve data ...

How to change the character set encoding to UTF8 in MySQL 5.5/5.6 under Linux

1. Log in to MySQL and use SHOW VARIABLES LIKE &#...

Easyswoole one-click installation script and pagoda installation error

Frequently asked questions When you are new to ea...

Full-screen drag upload component based on Vue3

This article mainly introduces the full-screen dr...

How to reset the initial value of the auto-increment column in the MySQL table

How to reset the initial value of the auto-increm...

How to force vertical screen on mobile pages

I recently wrote a mobile page at work, which was...

SQL implements LeetCode (180. Continuous numbers)

[LeetCode] 180. Consecutive Numbers Write a SQL q...

Solution for FileZilla 425 Unable to connect to FTP (Alibaba Cloud Server)

Alibaba Cloud Server cannot connect to FTP FileZi...

JS asynchronous execution principle and callback details

1. JS asynchronous execution principle We know th...

Summary of Linux file basic attributes knowledge points

The Linux system is a typical multi-user system. ...

Improvement experience and sharing of 163 mailbox login box interactive design

I saw in the LOFTER competition that it was mentio...

JavaScript data structure bidirectional linked list

A singly linked list can only be traversed from t...

Specific use of GNU Parallel

what is it? GNU Parallel is a shell tool for exec...