溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JavaScript實(shí)現(xiàn)跟隨廣告的代碼怎么編寫

發(fā)布時(shí)間:2021-11-08 12:44:28 來源:億速云 閱讀:138 作者:柒染 欄目:開發(fā)技術(shù)

本篇文章為大家展示了JavaScript實(shí)現(xiàn)跟隨廣告的代碼怎么編寫,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

浮動廣告是目前網(wǎng)站很常見的一種廣告形式,浮動廣告能實(shí)時(shí)跟隨用戶的瀏覽,有效的傳達(dá)產(chǎn)品要表達(dá)的意思,達(dá)到很好的傳播效果。那么浮動廣告是怎么實(shí)現(xiàn)的呢,其實(shí)實(shí)現(xiàn)浮動廣告并不難,具體如下:

* {
            margin: 0;
            padding: 0;
        }
        
        img {
            position: absolute;
            left: 0;
        }
        
        p {
            text-align: center;
            line-height: 40px;
        }
<img src="images/left_ad.png" alt="">
    <p>我是正文1</p>
    <p>我是正文2</p>
    <p>我是正文3</p>
    <p>我是正文4</p>
    <p>我是正文5</p>
    <p>我是正文6</p>
    <p>我是正文7</p>
    <p>我是正文8</p>
    <p>我是正文9</p>
    <p>我是正文10</p>
    <p>我是正文11</p>
    <p>我是正文12</p>
    <p>我是正文13</p>
    <p>我是正文14</p>
    <p>我是正文15</p>
    <p>我是正文16</p>
    <p>我是正文17</p>
    <p>我是正文18</p>
    <p>我是正文19</p>
    <p>我是正文20</p>
    <p>我是正文21</p>
    <p>我是正文22</p>
    <p>我是正文23</p>
    <p>我是正文24</p>
    <p>我是正文25</p>
    <p>我是正文26</p>
    <p>我是正文27</p>
    <p>我是正文28</p>
    <p>我是正文29</p>
    <p>我是正文30</p>
    <p>我是正文31</p>
    <p>我是正文32</p>
    <p>我是正文33</p>
    <p>我是正文34</p>
    <p>我是正文35</p>
    <p>我是正文36</p>
    <p>我是正文37</p>
    <p>我是正文38</p>
    <p>我是正文39</p>
    <p>我是正文40</p>
    <p>我是正文41</p>
    <p>我是正文42</p>
    <p>我是正文43</p>
    <p>我是正文44</p>
    <p>我是正文45</p>
    <p>我是正文46</p>
    <p>我是正文47</p>
    <p>我是正文48</p>
    <p>我是正文49</p>
    <p>我是正文50</p>
//1.拿到需要操作的元素
        const oAdImg = document.querySelector("img");
 
        //2.計(jì)算廣告圖片top的值=(視口高度-廣告高度)/2
        const screenHeight = getScreen().height;
        const imgHeight = oAdImg.offsetHeight;
        const offsetY = (screenHeight - imgHeight) / 2;
        // console.log(offsetY);
 
        //3.將計(jì)算之后的top值,設(shè)置給廣告圖片
        // oAdImg.style.top = offsetY + 'px';
        easeAnimation(oAdImg, {
            "top": offsetY
        });
 
        //4.監(jiān)聽網(wǎng)頁的滾動事件
        window.onscroll = function() {
            //獲取到網(wǎng)頁滾動的距離
            //廣告圖片top的值+網(wǎng)頁滾動的距離
            let pageOffsetY = getPageScroll().y;
            easeAnimation(oAdImg, {
                "top": offsetY + pageOffsetY
            });
        };
 
        // 瀏覽器視口寬高
        function getScreen() {
            let width, height;
            if (window.innerWidth) {
                width = window.innerWidth;
                height = window.innerHeight;
            } else if (document.compatMode === "BackCompat") {
                width = document.body.clientWidth;
                height = document.body.clientHeight;
            } else {
                width = document.documentElement.clientWidth;
                height = document.documentElement.clientHeight;
            }
            return {
                width: width,
                height: height
            }
        }
 
        // 緩動動畫
        function easeAnimation(ele, obj, fn) {
            clearInterval(ele.timerId);
            ele.timerId = setInterval(function() {
                // flag變量用于標(biāo)記是否所有的屬性都執(zhí)行完了動畫
                let flag = true;
 
                for (let key in obj) {
                    let target = obj[key];
 
                    // 1.拿到元素當(dāng)前的位置
                    let style = getComputedStyle(ele);
                    let begin = parseInt(style[key]) || 0;
 
                    // 2.定義變量記錄步長
                    // 公式: (結(jié)束位置 - 開始位置) * 緩動系數(shù)(0 ~1)
                    let step = (target - begin) * 0.3;
 
                    // 3.計(jì)算新的位置
                    begin += step;
                    if (Math.abs(Math.floor(step)) > 1) {
                        flag = false;
                    } else {
                        begin = target;
                    }
                    // 4.重新設(shè)置元素的位置
                    ele.style[key] = begin + "px";
                }
 
                //判斷動畫是否執(zhí)行完
                if (flag) {
                    //動畫執(zhí)行完后關(guān)閉定時(shí)器
                    clearInterval(ele.timerId);
 
                    //判斷是否傳入fn函數(shù),有才執(zhí)行反之不執(zhí)行
                    fn && fn();
                }
            }, 100);
        }
 
        // 網(wǎng)頁滾動距離
        function getPageScroll() {
            let x, y;
            if (window.pageXOffset) {
                x = window.pageXOffset;
                y = window.pageYOffset;
            } else if (document.compatMode === "BackCompat") {
                x = document.body.scrollLeft;
                y = document.body.scrollTop;
            } else {
                x = document.documentElement.scrollLeft;
                y = document.documentElement.scrollTop;
            }
            return {
                x: x,
                y: y
            }
        }

效果圖

JavaScript實(shí)現(xiàn)跟隨廣告的代碼怎么編寫

上述內(nèi)容就是JavaScript實(shí)現(xiàn)跟隨廣告的代碼怎么編寫,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI