輪播呢,也是各種網(wǎng)站上常見的一種展示效果,這里我來寫一寫實現(xiàn)輪播的一些簡單方法。
//不知道為什么系統(tǒng)吃了代碼里面的img標簽稀拐,大佬們有解決方式么?
1.原生js輪播
原生的輪播效果丹弱,這里實現(xiàn)的原理:有個一個放置圖片列表的塊級元素德撬,放置所有的圖片,我這里使用的是橫向的列表躲胳;他的父元素為一個展示塊蜓洪,寬高為一張圖片的寬高,利用overflow:hidden屬性坯苹,每次只展示一張圖片隆檀,隱藏其他圖片,再用js控制圖片列表定時或者其他方式左移右移即可實現(xiàn)簡單的輪播了北滥。下圖圖片處為overflow:hidden的父元素刚操,1500*200為圖片列表闸翅。
為了讓輪播更流暢再芋,在最后一張圖片后面插入第一張圖片。
.box{
width:300px;
height:200px;
margin:100px auto;
overflow: hidden;
}
.img-g{
width:1500px;
height:200px;
}
.img-g img{
width:300px;
height:200px;
}
將圖片列表position設(shè)為relative坚冀,就可以利用偏移來移動圖片了济赎,為了方便,這里將left屬性內(nèi)聯(lián)到img-g里记某。
如left為-100px時
然后用js獲得圖片列表的style.left司训,使用定時器控制他的偏移量,就可以實現(xiàn)簡單的輪播了液南。
let p=document.getElementsByClassName('img-g')[0];
let timer=setInterval(move,2000);
function move(){
if(parseInt(p.style.left)>-1200){
p.style.left=parseInt(p.style.left)-300+'px'
console.log(p.style.left)
}else{
p.style.left='-300px'
}
}
不過光有圖片的移動還不夠壳猜,為了讓圖片切換更自然一點,可以加入css3對left的過渡滑凉。
不過最后一張切換到第一張時的過渡是相反的统扳,因此還是使用js控制過渡屬性。
從最后一張圖片到第一張圖片的過渡稍微麻煩一些畅姊,我最后使用定時器咒钟,讓圖片滑到最后一張,等過渡動畫完成之后若未,取消過渡動畫朱嘴,切換到第一張之后再開啟動畫。這部分代碼如下
let p=document.getElementsByClassName('img-g')[0];
let timer=setInterval(move,2000);
function move(){
if(parseInt(p.style.left)>-1200){
p.style.left=parseInt(p.style.left)-300+'px'
p.style.transition='left 1s';
if(parseInt(p.style.left)<=-1200){
console.log('t')
setTimeout(function(){
p.style.left='0px'
p.style.transition='left 0s';
},1000)
}
}else{
p.style.left='0px'
p.style.transition='left 0s';
}
}
到這里粗合,輪播的功能已經(jīng)實現(xiàn)了萍嬉,還可以為它加上幾個小圓點乌昔,控制輪播現(xiàn)在正在播放的圖。
小圓點html
<div class='button-g'>
<span data-index='0' ></span>
<span data-index='1'></span>
<span data-index='2'></span>
<span data-index='3'></span>
</div>
.button-g{
position:relative;
top:-20px;
text-align:center;
}
.button-g span{
display:inline-block;
position:relative;
z-index:10;
width:10px;
height:10px;
margin:0 5px;
border-radius:100%;
}
小圓點被點擊時壤追,圖片滑動至小圓點對應(yīng)的圖片玫荣,并且圖片滑動時小圓點也跟著變化,我在每個小圓點屬性中加入了data-屬性大诸,該屬性可被js獲取捅厂。
為小圓點加入事件,被點擊時滑動對應(yīng)的偏移量资柔。
for(let i=0;i<button.length;i++){
button[i].onclick=function(){
p.style.left=-300*this.getAttribute('data-index')+'px'
tog(this.getAttribute('data-index'))
}
}
function tog(index){
if(index>3){tog(0);return;}
for(let i=0;i<button.length;i++){
button[i].style.backgroundColor='#eee'
}
button[index].style.backgroundColor='rgb(215, 81, 15)';
}
常見的輪播還有一種效果焙贷,就是鼠標只在圖片上的時候,暫停輪播贿堰;鼠標離開時繼續(xù)輪播辙芍。
以這種思路,很容易實現(xiàn)想要的效果羹与。
p.onmouseover=function(){
clearInterval(window.timer)
}
p.onmouseout=function(){
window.timer=setInterval(move,3000);
}
實際效果可以看下面鏈接:
https://zkhchris.github.io/FE_basic/hc/Carousel/carousel_pure_js.html
2.css3輪播
這里使用css3動畫實現(xiàn)了一個漸顯漸隱的效果故硅,使用absolute定位,讓圖片列表中的圖片疊加在一起纵搁,通過動畫控制z-index和透明度實現(xiàn)漸顯漸隱吃衅。
absolute元素相對于第一個定位不是static的父元素定位,因此該元素都疊加在一個顯示塊中腾誉。
然后使用css3動畫按時間循環(huán)改變他們的透明度和z-index徘层,即可完成簡單的輪播效果。
這里每張圖片占用的動畫時間為4s利职,總動畫時間即為16s趣效。淡入淡出都是1s,占用總時間約為6%猪贪,在最頂層的時間為3s跷敬,占用總時間18.7%;按此比例設(shè)置keyframe
.imglist img{
width:300px;
height:200px;
position:absolute;
animation: show 16s infinite;
}
@keyframes show{
0%{
opacity:0;
z-index:2;
}
6%,25%{
opacity:1;
z-index: 1;
}
31%,100%{
opacity:0;
z-index:0;
}
}
這時圖片都可以按時間循環(huán)出現(xiàn)热押,不過他們現(xiàn)在是同時出現(xiàn)西傀,同時消失的,為圖片加上延時即可完成效果楞黄。
#img2{
animation-delay: 0s;
}
#img2{
animation-delay: 4s;
}
#img3{
animation-delay: 8s;
}
#img4{
animation-delay: 12s;
}
css3輪播可實現(xiàn)輪播效果池凄,但是沒有辦法控制現(xiàn)在要播哪張圖片,因此盡量使用js控制輪播效果鬼廓。
https://zkhchris.github.io/FE_basic/hc/Carousel/css3carousel.html
3.vue輪播
使用vue輪播肿仑,可以使用列表渲染動態(tài)加入想輪播的圖片,使用vue自帶的列表過渡,可實現(xiàn)輪播效果尤慰。
這里使用非無定位輪播框父元素加上子元素為absolute圖片馏锡,配合v-show實現(xiàn)輪播效果。
列表渲染圖片
<template>
<div id='swiper_img_box'>
<ul class='swiper_img_ul'>
</ul>
<ul class='buttonG'>
<span v-for='(img,index) in imgs' :key='index' ></span>
</ul>
</div>
</template>
<style>
.swiper_img_ul{
height:300px;
}
.swiper_img_ul img{
position:absolute;
}
#swiper_img_box{
position:relative;
width:300px;
height:300px;
overflow:hidden;
}
.buttonG{
position:absolute;
bottom:0;
}
.circle{
display:inline-block;
width:15px;
height:15px;
border-radius:100%;
margin-left:10px;
}
</style>
使用v-show來控制圖片是否顯示伟端,在使用定時器來定時修改當前顯示的圖片,定時器掛在了mounted上杯道。
mounted:function(){
this.timer=setInterval(this.changeIndex,2000)
},
methods:{
changeIndex(){
if(this.showIndex>=this.imgs.length-1){
this.showIndex=0
}else{
this.showIndex++
}
}
data () {
return {
imgs:[
{
src:'../../dist/7.gif',
alt:'1'
},{
src:'../../dist/home_06.gif',
alt:'2'
},{
src:'../../dist/home_08.gif',
alt:'3'
},{
src:'../../dist/home_12.gif',
alt:'4'
}
],
showIndex:0
}
},
這樣,通過定時器责蝠,可以控制圖片的輪播了党巾,但是沒有過渡效果,輪播很突兀,加上過渡效果就好了霜医。
<transition-group name='image' tag="ul" class='swiper_img_ul'>
.image-enter-active {
transform: translateX(0);
transition: all 1s ease;
}
.image-leave-active {
transform: translateX(-100%);
transition: all 1s ease;
}
.image-enter {
transform: translateX(100%)
}
.image-leave {
transform: translateX(0)
}
在加上常見的鼠標mouseover暫停齿拂,mouseout繼續(xù),點擊按鈕輪播至所點擊按鈕對應(yīng)的圖片肴敛。
<transition-group name='image' tag="ul" class='swiper_img_ul'>
<img ...... @mouseover='stop' @mouseout='start'>
</transition-group>
<ul class='buttonG'>
<span ...... @click='goto(index)'></span>
</ul>
methods:{
changeIndex(){
if(this.showIndex>=this.imgs.length-1){
this.showIndex=0
}else{
this.showIndex++
}
},
stop(){
console.log('1')
clearInterval(this.timer)
},
start(){
this.timer=setInterval(this.changeIndex,2000)
},
goto(i){
this.showIndex=i
this.stop()
this.start()
}
}
這時輪播效果就實現(xiàn)的差不多了署海,不過這個vue輪播我是寫成了單文件組件的形式,無法預(yù)覽医男,就在下方貼上這個代碼砸狞。
謝謝大家閱讀,希望大佬們多多指點镀梭。
swiper.vue
<template>
<div id='swiper_img_box'>
<ul class='buttonG'>
<span v-for='(img,index) in imgs' :key='index' :class="[index==showIndex ? 'color' : 'white', 'circle']" @click='goto(index)'></span>
</ul>
</div>
</template>
<script>
export default{
name:'swiper',
data () {
return {
imgs:[
{
src:'../../dist/7.gif',
alt:'1'
},{
src:'../../dist/home_06.gif',
alt:'2'
},{
src:'../../dist/home_08.gif',
alt:'3'
},{
src:'../../dist/home_12.gif',
alt:'4'
}
],
showIndex:0
}
},
mounted:function(){
this.timer=setInterval(this.changeIndex,2000)
}
,
methods:{
changeIndex(){
if(this.showIndex>=this.imgs.length-1){
this.showIndex=0
}else{
this.showIndex++
}
},
stop(){
clearInterval(this.timer)
},
start(){
this.timer=setInterval(this.changeIndex,2000)
},
goto(i){
this.showIndex=i
this.stop()
this.start()
}
}
}
</script>
<style>
.swiper_img_ul{
height:300px;
}
.swiper_img_ul img{
position:absolute;
}
#swiper_img_box{
position:relative;
width:300px;
height:300px;
overflow:hidden;
}
.buttonG{
position:absolute;
bottom:0;
}
.circle{
display:inline-block;
width:15px;
height:15px;
border-radius:100%;
margin-left:10px;
}
.white{
background-color:#fff;
}
.color{
background-color:#f00;
}
.image-enter-active {
transform: translateX(0);
transition: all 1s ease;
}
.image-leave-active {
transform: translateX(-100%);
transition: all 1s ease;
}
.image-enter {
transform: translateX(100%)
}
.image-leave {
transform: translateX(0)
}
</style>