如何用構(gòu)造函數(shù)面向?qū)ο蠓椒▽戄啿D(簡單易懂)

首先我們需要有幾張大小差不多的圖片枫攀,以及對應(yīng)數(shù)量的圖片導(dǎo)航

<div>
        <ul>
            <li class="active"><img src="./imgs/iu1.jpg" alt=""></li>
            <li><img src="./imgs/iu2.jpg" alt=""></li>
            <li><img src="./imgs/iu3.jpg" alt=""></li>
            <li><img src="./imgs/iu4.jpg" alt=""></li>
        </ul>
        <ol>
            //圖片導(dǎo)航
            <li class="active">1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
        </ol>
        <span id="up">&lt;</span>
        <span id="down">&gt;</span>
    </div>

然后我們簡單排個版

*{
    margin: 0;
    padding: 0;
    list-style: none;
}
div{
    width: 1050px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    span{
        display: inline-block;
        width: 40px;
        height: 80px;
        background-color:rgba(82, 78, 78, 0.5);
        line-height: 80px;
        font-size: 40px;
        text-align: center;
        color: #e1e1e1;
        position: absolute;
        top: 50%;
        margin-top: -40px;
        &:nth-of-type(2){
            right: 0;
        }

    }
    ol{
        position: absolute;
        bottom: 30px;
        left: 0;
        margin-left: 450px;
        li{
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 20px;
            margin-right: 30px;
            border-radius: 50%;
            color: #fff;
            background-color: #999;
            float: left;
        }
        .active{
            background-color: rgba(48, 46, 46, 0.5);
        }
    }
}
ul li,ul li img{
    width: 100%;
    height: 500px;
}
ul li{
    display: none;
    
}
.active{
        display: block;
    }

面向?qū)ο蠓椒乇刂福覀兪紫葋矸庋b一個構(gòu)建函數(shù)

function Lun(){
        
    }

接下來在這個構(gòu)造函數(shù)的prototype里寫一些東西囊咏,當(dāng)然不要忘記讓它的prototype里的constructor屬性指向這個構(gòu)造函數(shù)本身

Lun.prototype = {
        constructor: Lun,
        init(){//事件的調(diào)用集合(名字自己取的,叫什么都可以)
        }
}
在構(gòu)造函數(shù)里直接調(diào)用init()就可以啦
function Lun(){
        
        this.init();
    }

最后來安排一下構(gòu)造函數(shù)的實(shí)例化

var lunBo = new Lun();

話不多說塔橡,直接上輪播圖代碼

window.onload = function () {
    function Lun() {
        this.timer = null;//初始化一個定時器
        this.index = 0;//初始化下標(biāo)
        //獲取
        this.down = document.querySelector('#down');
        this.up = document.querySelector('#up');
        this.imgs = document.querySelectorAll('ul li');
        this.lis = document.querySelectorAll('ol li');
        this.div = document.querySelector('div');
        //調(diào)用
        this.init();
    }
    Lun.prototype = {
        constructor: Lun,
        // 事件調(diào)用合集
        init() {
            this.addEvent()
            this.auto()
        },
        //切換排他
        qiehuan(ind) {//接受一個參數(shù)梅割,下標(biāo)
            for (let i = 0; i < this.imgs.length; i++) {//for循環(huán)排他思想
                this.imgs[i].classList.remove('active');
                this.lis[i].classList.remove('active');
            }
            this.imgs[ind].classList.add('active');
            this.lis[ind].classList.add('active');
        },
        //事件
        addEvent() {
            let that = this;
            //點(diǎn)擊下一張
            this.down.onclick = function () {
                    that.index++;//下標(biāo)增加
                    if (that.index > that.imgs.length - 1) {//大于最后一張就回到第一張
                        that.index = 0;
                    }
                    that.qiehuan(that.index)//調(diào)用排他
                },
                //點(diǎn)擊上一張
                this.up.onclick = function () {
                    that.index--;//下標(biāo)減小
                    if (that.index < 0) {//小于第一張就回到最后一張
                        that.index = that.imgs.length - 1;
                    }
                    that.qiehuan(that.index)//調(diào)用排他
                },
                //鼠標(biāo)移入清除定時器
                this.div.onmouseover = function () {
                    clearInterval(that.timer);
                    that.timer = null;
                },
                //鼠標(biāo)移入調(diào)用定時器
                this.div.onmouseout = function () {
                    that.auto();
                };
            //點(diǎn)擊圖片導(dǎo)航
            for (let i = 0; i < this.lis.length; i++) {
                this.lis[i].onclick = function () {
                    that.index = i;//同步下標(biāo),點(diǎn)哪個就換哪張圖
                    that.qiehuan(that.index)
                }
            }
        },
        //定時器
        auto() {
            let that = this;
            this.timer = setInterval(function () {
                that.index++;
                if (that.index > that.imgs.length - 1) {
                    that.index = 0;
                }
                that.qiehuan(that.index)
            }, 1000)
        },
    }
    var lunBo = new Lun();
    
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末葛家,一起剝皮案震驚了整個濱河市户辞,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌癞谒,老刑警劉巖底燎,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件刃榨,死亡現(xiàn)場離奇詭異,居然都是意外死亡双仍,警方通過查閱死者的電腦和手機(jī)枢希,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來朱沃,“玉大人晴玖,你說我怎么就攤上這事∥鳎” “怎么了呕屎?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長敬察。 經(jīng)常有香客問我秀睛,道長,這世上最難降的妖魔是什么莲祸? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任蹂安,我火速辦了婚禮,結(jié)果婚禮上锐帜,老公的妹妹穿的比我還像新娘田盈。我一直安慰自己,他們只是感情好缴阎,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布允瞧。 她就那樣靜靜地躺著,像睡著了一般蛮拔。 火紅的嫁衣襯著肌膚如雪述暂。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天建炫,我揣著相機(jī)與錄音畦韭,去河邊找鬼。 笑死肛跌,一個胖子當(dāng)著我的面吹牛艺配,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播衍慎,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼转唉,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了西饵?” 一聲冷哼從身側(cè)響起酝掩,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤鳞芙,失蹤者是張志新(化名)和其女友劉穎眷柔,沒想到半個月后期虾,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡驯嘱,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年镶苞,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片鞠评。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡窃植,死狀恐怖亭罪,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤侥涵,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站胚宦,受9級特大地震影響益兄,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜抖棘,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一茂腥、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧切省,春花似錦最岗、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至芙盘,卻和暖如春诊杆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背何陆。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工晨汹, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人贷盲。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓淘这,卻偏偏與公主長得像,于是被迫代替她去往敵國和親巩剖。 傳聞我的和親對象是個殘疾皇子铝穷,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容