glide实现视频文字图标可拖拽幻灯片效果代码

代码语言:html

所属分类:幻灯片

代码描述:glide实现视频文字图标可拖拽幻灯片效果代码,幻灯片的每一页都是一个视频文字,可左右拖拽无缝切换,还可点击底部图标切换。

代码标签: glide 视频 文字 图标 拖拽 幻灯片

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
 
<meta charset="UTF-8">
 

 
 
<style>
body
{
 
background: #000;
 
color: #fff;
 
font-family: sans-serif;
}

video
{
 
display: block;
 
max-width: 100%;
 
width: 100%;
}

#slides {
 
max-width: 600px;
 
margin: 0 auto;
 
text-align: center;
}


.glide__slide p {
 
color: rgba(252, 252, 252, 0.5);
 
font-size: 12px;
}

.glide__bullets {
 
display: inline-flex;
 
gap: 10px;
}

.glide__bullet {
 
width: 32px;
 
height: 32px;
 
display: flex;
 
align-items: center;
 
justify-content: center;
 
border-radius: 50%;
 
border: none;
 
background: transparent;
 
color: #fcfcfc;
 
transition: 0.2s color, 0.2s background-color;
}

.glide__bullet.glide__bullet--active {
 
background: #fcfcfc;
 
color: #0c0c0c;
}
</style>

   
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/glide.core.min.css">
 
</head>

<body translate="no">



<div id="slides" class="glide">
 
<div class="glide__track" data-glide-el="track">
   
<div class="glide__slides">
     
     
<!-- 1 -->
     
<div class="glide__slide">
       
<video style="margin: 0 auto; max-width: 100%; display: block" loop autoplay playsinline muted>
         
<source src="//repo.bfw.wiki/bfwrepo/video/machine/7e7078d9c941421ab5481b1981c33017.mp4"/>
       
</video>
       
<p>Cargo resupply missions to the International Space Station are a great example of the increasing reliance on space-based logistics for sustaining human presence beyond Earth. The capability for resupply and removal is not only crucial for scientific progress but also holds immense potential as commercial applications become commonplace in orbit.</p>
     
</div>
     
     
<!-- 2 -->
     
<div class="glide__slide">
       
<video style="margin: 0 auto; max-width: 100%; display: block" loop autoplay playsinline muted>
         
<source src="//repo.bfw.wiki/bfwrepo/video/machine/0b8fc367bc904c20ba7fcacdb9eac11d.mp4?123"/>
       
</video>
       
<p>Microgravity entertainment venues present an opportunity to captivate audiences with awe-inspiring, gravity-defying s.........完整代码请登录后点击上方下载按钮下载查看

网友评论0