js构造函数创建轮播图

html部分

<div class="loopbox">

        <div id="box" class="box">
            <div class="box-item"><img src="img/1.webp"></div>
            <div class="box-item"><img src="img/2.webp"></div>
            <div class="box-item"><img src="img/3.webp"></div>
            <div class="box-item"><img src="img/4.webp"></div>
        </div>

        <a class="arrow arrow-left" href="javascript:;" onclick="lunbo.goLeft()">左</a>
        <a class="arrow arrow-right" href="javascript:;" onclick="lunbo.goRight()">右</a>

      

    </div>

css部分:

.loopbox{
        width: 1200px;
        height: 460px;
        margin: auto;
        position: relative;
        overflow: hidden;
        border: 1px sienna solid;
    }
    .box{
        width: 100%;
        height: 100%;
        float: left;
        position: relative;
    
        transition: all .3s;
    }
    
    .box-item{
            width: 100%;
            /* width: 1200px; */
            height: 100%;
            float: left;
            background: #f1f1f1;
            text-align: center;
            font-size: 24px;
            line-height: 100px;
            /* display: none; */
        }

        .box-item img {
            width: 100%;
            height: 100%;
            /* 图片适应 */
            object-fit: cover;
        }

js部分:

//构造函数
function inloop() {

    //DOM对象
    this.loopboxdata=function(id){
        this.loopboxdata=document.getElementsByClassName(id)[0];
        return this.loopboxdata;
    }

    this.boxdom=function(id){
        
        this.boxdom=document.getElementById(id);
        return this.boxdom;
    }
    this.boxitemdata=function(id){
        this.boxitemdata=document.getElementsByClassName(id);
        return   this.boxitemdata;
    }

    //变量
    this.boxwidth = 0;
    this.boxitemwidth = 1200;
    this.goLoop;
    this.index=0;
    this.direction = "right";
    //方法 设置各个盒子宽度
    this.inLoop = function () {
        //显示区域长度
        this.loopboxdata.style.width = this.boxitemwidth + "px";
        this.loopboxdata.style.height = 400 + "px";
        //循环总长度
        this.boxwidth = this.boxitemwidth * this.boxitemdata.length;
        this.boxdom.style.width = this.boxwidth + "px";
        // 图片长度;
        for (let i = 0; i < this.boxitemdata.length; i++) {
            this.boxitemdata[i].style.width = this.boxitemwidth + "px";
        }
    }
    //左按钮
   this.goLeft=function() {
        this.direction = "left";
        this.index--;
        if (this.index < 0) {
            this.index = this.boxitemdata.length - 1;}
        this.goIndex(this.index);
        // changeBox(index);
        // changePage(index);
    }
    //右按钮
    this.goRight=function() {
        this.direction = "right";
        this.index++;
        if (this.index > this.boxitemdata.length - 1) {
            this.index = 0;}
        this.goIndex(this.index);
        // changeBox(index);
        // changePage(index);
    }

    this.goIndex=function(_index) {
        this.index = _index;
        this.changeBox(_index);
        // changePage(_index);
    }
    //
    this.changeBox=function(_index) {
        num= _index * this.boxitemwidth * -1;
        console.log(num);
        this.boxdom.style.left=num+"px";
    }
    //定时任务
    this.goLoopFunction = function () {
        goLoop = setInterval(() => {
            this.goRight();
        }, 2000);
    }

}

://定时任务
    this.goLoopFunction = function () {
        goLoop = setInterval()=>{
            this.goRight();
        }, 2000);
    }其中箭头函数体内的this对象,就是定义该函数时所在的作用域指向的对象,而不是使用时所在的作用域指向的对象。

 

 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值