每天10个前端知识点:运动框架应用篇(下)

个人博客已上线,欢迎前去访问评论!
无媛无故 - wangchloe的个人博客


以下内容若有问题烦请即时告知我予以修改,以免误导更多人。

本次内容:打字依次显示效果、收起当前页放出下一页效果、分块运动、无缝幻灯片、带进度条的无缝幻灯片


10. 打字依次显示效果

<style>
    body {
        background: #000;
    }
    span {
        color: #fff;
        font-size: 20px;
        opacity: 0;
    }
</style>

<script type="text/javascript" src='move.js'></script>
<script>
    window.onload = function () {
        var str = '往左走(left负数)W = oUl.offsetWidth / 2;left -= 5;left = left % W;往右走(left正数)W = oUl.offsetWidht / 2;left += 5;left = (left % W - W) % W;';
        for(var i = 0; i < str.length; i++) {
            var oS = document.createElement('span');
            oS.innerHTML = str.charAt(i);
            document.body.appendChild(oS);
        }

        var aSpan = document.body.children;
        var i = 0;

        // 分步运动
        var timer = setInterval(function() {
            move(aSpan[i], {opacity: 1}, {duration: 100});
            i++;
            if(i == aSpan.length) {
                clearInterval(timer);
            }
        }, 100);

    }
</script>

效果示例


move框架应用 - 打字依次显示效果

11. 收起当前页放出下一页效果

<style>
    * {
        margin: 0;
        padding: 0;
    }
    ul {
        width: 516px;
        margin: 50px auto;
    }
    ul li {
        list-style: none;
        width: 150px;
        height: 150px;
        background: #ccc;
        float: left;
        margin: 10px;
        border: 1px solid #000;
    }
</style>
    <input type="button" value="下一页" id="btn1" />
    <ul id="ul1">
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>
<script type="text/javascript" src='move.js'></script>
<script>
    window.onload = function() {
        var oBtn = document.getElementById('btn1');
        var oUl = document.getElementById('ul1');
        var aLi = oUl.children;

        // 浮动定位 -> 绝对定位
        var aPos = [];
        for (var i = 0; i < aLi.length; i++) {
            aPos[i] = {
                left: aLi[i].offsetLeft,
                top: aLi[i].offsetTop
            };
        }
        for (var i = 0; i < aLi.length; i++) {
            aLi[i].style.position = 'absolute';
            aLi[i].style.left = aPos[i].left + 'px';
            aLi[i].style.top = aPos[i].top + 'px';
            aLi[i].style.margin = 0;
        }

        var timer = null;
        var bSin = false;
        oBtn.onclick = function() {
            if (bSin) return;
            bSin = true;

            // 分步运动
            var i = 0;
            timer = setInterval(function(){
                (function(index){
                    // 收起
                    move(aLi[i], {
                        left: 0, top:0, width: 0,
                        height: 0, opacity: 0
                    },{
                        complete: function() {  // 回调函数
                            if (index == aLi.length-1) {
                                // 放出
                                for (var i = 0; i < aLi.length; i++) {
                                    aLi[i].style.background = 'rgb('+parseInt(Math.random()*256)+','+parseInt(Math.random()*256)+','+parseInt(Math.random()*256)+')';
                                }

                                timer = setInterval(function(){
                                    (function(index2){
                                        move(aLi[index], {
                                            left: aPos[index].left, top: aPos[index].top, width: 150, height: 150, opacity: 1
                                        },{
                                            complete: function(){
                                                if (index2 == 0) {
                                                    // 放出最后一张后点击才有效
                                                    bSin = false;
                                                }
                                            }
                                        });
                                    })(index);

                                    index--;
                                    if (index < 0) {
                                        clearInterval(timer);
                                    }
                                },200);
                            }
                        }
                    })
                })(i);

                i++;
                if (i == aLi.length) {
                    clearInterval(timer);
                }
            },200);
        };
    };
</script>

效果示例


move框架应用 - 收起当前页放出下一页效果

12. 分块运动

  1. 自定义行数R、列数C
  2. 创建span
    计算oSpan的width、height、left、top、background-position

注意:先appendChild才能获取oSpan的offsetWidth和offsetHeight

  1. 分步运动,依次显示span

优化:setInterval可用for循环+setTimeout替代,可设置行列相关时同一时间出现

<style>
    * {
        margin: 0;
        padding: 0;
    }
    #btn{
        margin: 20px auto;
        padding: 5px;
        width: 100px;
        height: 20px;
        background: #f5850e;
        color: #fff;
        font-size: 16px;
        text-align: center;
        line-height: 20px;
        border-radius: 5px;
        cursor: pointer;
    }
    #box {
        position: relative;
        margin: 50px auto;
        width: 500px;
        height: 300px;
        background: url('img/slide0.jpg');
    }
    #box span{
        position: absolute;
        opacity: .1;
        /* opacity: 0; */
    }
</style>
    <div id='btn'>点击随机变换</div>
    <div id="box"></div>
<script type="text/javascript" src='move.js'></script>
<script>
    window.onload = function() {
        var oBtn = document.body.children[0];
        var oBox = document.body.children[1];

        var R = 3;
        var C = 5;

        // 整图 -> 分块(绝对定位)
        for(var r = 0; r < R; r++) {
            for(var c = 0; c < C; c++) {
                var oSpan = document.createElement('span');
                oSpan.style.width = oBox.offsetWidth / C + 'px';
                oSpan.style.height = oBox.offsetHeight / R + 'px';
                oBox.appendChild(oSpan);
                oSpan.style.left = oSpan.offsetWidth * c + 'px';
                oSpan.style.top = oSpan.offsetHeight * r + 'px';
                oSpan.style.backgroundPosition = - oSpan.offsetWidth * c + 'px ' + (-oSpan.offsetHeight * r) + 'px';
                oSpan.r = r;
                oSpan.c = c;
            }
        }

        var aSpan = oBox.children;
        var iNow = 0;
        var bSin = false;

        oBtn.onclick = function() {
            if(bSin) {return;}
            bSin = true;
            iNow++;
            oBox.style.background = 'url("img/slide'+ (iNow%9-1+9)%9 +'.jpg")';

            block(parseInt(Math.random()*7+1));     // 随机变换显示方式
        }

        var json = {};
        for(var i = 0; i < 8; i++) {
            json[i] = 0;
        }

        function block(method) {
            json[method]++;
            var med = 1;
            for(var i = 0; i < aSpan.length; i++) {
                (function(index) {
                    switch(method) {
                        case 1: med = index;
                            break;
                        case 2: med = aSpan[index].r + aSpan[index].c;  // 斜角显示
                            break;
                        case 3: med = aSpan[index].r * aSpan[index].c;
                            break;
                        case 4: med = aSpan[index].r - aSpan[index].c;
                            break;
                        case 5: med = aSpan[index].r / aSpan[index].c;
                            break;
                        case 6: med = aSpan.length - index;  // 由下至上
                            break;
                        case 7: med = Math.random();
                            break;
                    }
                    setTimeout(function(){
                        aSpan[index].style.backgroundImage = 'url("img/slide'+ iNow%9 + '.jpg")';
                        aSpan[index].style.opacity = 0.1;
                        (function(index2) {
                            move(aSpan[index], {opacity: 1}, {complete: function() {
                                    if(index2 == aSpan.length - 1) {
                                        // 放出最后一个分块后点击才有效
                                        bSin = false;
                                    }
                            }});
                        })(index);
                    }, 100*(med));  // 每个分块延迟时间不同,达到依次显示的效果
                })(i);
            }
        }
    }
</script>

效果示例


move框架应用 - 分块运动
move框架应用 - 分块运动

13. 仿Mac 感应变大效果

  1. 感应距离:一般为500

比例:scale = 1 - c/500;

  1. 勾股定理计算鼠标至图片中心距离

var a = getPos(aImg[i]).left + aImg[i].offsetWidth / 2 - oEvent.clientX;

var b = getPos(aImg[i]).top + aImg[i].offsetHeight / 2 - oEvent.clientY;

var c = Math.sqrt(a * a + b * b);

  1. 计算方放大比例,范围为[0.5, 1]
    var scale = 1 - c / 500;
    scale < 0.5 && (scale = 0.5);
    aImg[i].style.width = scale * 80 + 'px';
<style>
    * {
        margin: 0;
        padding: 0;
    }

    #box {
        position: absolute;
        bottom: 20px;
        width: 100%;
        text-align: center;
    }
</style>
    <div id="box">
        ![](img/per-1.png)
        ![](img/per-2.png)
        ![](img/per-3.png)
    </div>
<script>
    function getPos(obj) {
        var l = 0;
        var t = 0;
        while(obj) {
            l += obj.offsetLeft;
            t += obj.offsetTop;
            obj = obj.offsetParent;
        }

        return {left: l, top: t};
    }
    window.onload = function() {
        var oBox = document.body.children[0];
        var aImg = oBox.children;

        document.onmousemove = function(ev) {
            var oEvent = ev || event;
            for(var i = 0; i < aImg.length; i++) {

                // 勾股定理计算鼠标至图片中心距离
                var a = getPos(aImg[i]).left + aImg[i].offsetWidth / 2 - oEvent.clientX;
                var b = getPos(aImg[i]).top + aImg[i].offsetHeight / 2 - oEvent.clientY;
                var c = Math.sqrt(a * a + b * b);

                //计算方放大比例,范围为[0.5, 1]
                var scale = 1 - c / 500;
                scale < 0.5 && (scale = 0.5);
                aImg[i].style.width = scale * 80 + 'px';
            }
        }
    }
</script>

效果示例


move框架应用 - 感应变大效果

更多内容可以订阅本人微信公众号,一起开启前端小白进阶的世界!

公众号是坚持日更的,不发文的时候推送一些我觉得好用的前端网站或者看到的一些问题的解决方案,也更便于大家交流,就酱。

微信公众号:无媛无故
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容