栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > Web开发 > Html/CSS > CSS教程

详解用backgroundImage解决图片轮播切换

CSS教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

单dom节点实现轮播

利用backgroundImage可以添加多张图片,以及位置偏移实现轮播效果



  • 创建一个div;并用backgroundImage给div附图片
  • 利用backgroundPosition调节位置
  • 利用css3 transition调节过渡
  • 即可替代简单的图片切换
  
    function playImage(src) {
 if (animaitionFinshed) return;
 if (!_imageEl) {
     _imageEl = document.createElement('div')
     _imageEl.className = `swiper_container`;
     _imageEl.style.backgroundImage = `url(${src.url})`;
     _imageEl.setAttribute("data-img", src.url);
     elContainer.appendChild(_imageEl);
 } else {
     animaitionFinshed = true;
     let width = elContainer.clientWidth, height = elContainer.clientHeight;
     let preImage = _imageEl.getAttribute("data-img");
     _imageEl.style.backgroundImage = `url(${preImage}),url(${src.url}) `;
     _imageEl.style.backgroundPositionX = `center,${width + 20}px`;
     setTimeout(() => {
  _imageEl.style.transition = "all 0.8s ease";
  _imageEl.style.backgroundPositionX = `-${width + 20}px,center`;
     }, 0);

     setTimeout(() => {
  _imageEl.style.transition = "none";
  _imageEl.style.backgroundImage = `url(${src.url}) `;
  _imageEl.style.backgroundPositionX = `center`;
  _imageEl.setAttribute("data-img", src.url)
  animaitionFinshed = false;
     }, 800)
 }
    }

源代码

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/215003.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号