13_JS缓动动画

三个取整函数

这三个函数都是数学函数, Math

  • Math.ceil() 向上取整 天花板
    console.log(Math.ceil(1.01)) 结果 是 2
    console.log(Math.ceil(1.9)) 结果 2
    console.log(Math.ceil(-1.3)) 结果 是 -1
  • Math.floor() 向下取整 地板
    console.log(Math.floor(1.01)) 结果 是 1
    console.log(Math.floor(1.9)) 结果 1
    console.log(Math.floor(-1.3)) 结果 是 -2
  • Math.round() 四舍五入函数
    console.log(Math.round(1.01)) 结果 是 1
    console.log(Math.round(1.9)) 结果 是 2

缓动动画

匀速动画的原理: 盒子本身的位置 + 步长
缓动动画的原理: 盒子本身的位置 + 步长 (不断变化的)

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            position: absolute;
            background-color: pink;
            left: 0;
        }
    </style>
    <script type="text/javascript">
        function $(id){return document.getElementById(id);}
        window.onload = function () {
            var box = $("box");
            $("btn400").onclick = function () {
                animate(box,400);
            }
            $("btn800").onclick = function () {
                animate(box,800);
            }
        }
        function animate(obj,target){
            clearInterval(obj.timer);
            obj.timer = setInterval(function () {
                var step = (target - obj.offsetLeft)/10;
                step = step>0?Math.ceil(step):Math.floor(step);
                obj.style.left = obj.offsetLeft+step+"px";
                if(obj.offsetLeft == target){
                    clearInterval(obj.timer);
                }
            },20);
        }
    </script>
</head>
<body>
<button id="btn400">400</button>
<button id="btn800">800</button>
<div id="box"></div>
</body>
</html>

JS常用访问 CSS 属性

我们访问得到css 属性,比较常用的有两种:

  • 利用点语法

box.style.width
box.style.top

如上点语法可以得到width属性和top属性,带有单位的,如:100px
但是这个语法有非常大的缺陷, 不变的。 后面的widthtop没有办法传递参数的。
不能这样写:var w = width;box.style.w

  • 利用 [] 访问属性

box.style["left"]);
元素.style[“属性”];

语法格式: box.style[“width”]
最大的优点 : 可以给属性传递参数

得到css 样式

我们想要获得css 的样式, box.style.leftbox.style.backgorundColor
但是它只能得到行内的样式。 但是我们工作最多用的是内嵌式或者外链式
怎么办? 核心: 我们怎么才能得到内嵌或者外链的样式呢?

  • obj.currentStyle IE、opera 常用
    外部(使用<link>)和内嵌(使用<style>)样式表中的样式(IE和opera常用)
  • window.getComputedStyle("元素", "伪类") w3c
    两个选项是必须的, 没有伪类 用 null 替代
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            background-color: pink;
            position: absolute;
            left: 10px;
            top: 0;
        }
    </style>
</head>
<body>
    <div id="box"></div>
    <script type="text/javascript">
        var box = document.getElementById("box");
        //IE和Opera支持
        //IE所有版本中:100px,chrome中报错
        console.log(box.currentStyle["width"]);
        //W3C支持的
        //chrome和IE9+中:10px,IE6、7、8中报错
        console.log(window.getComputedStyle(box,null)["left"]);
    </script>
</body>
</html>
  • 兼容写法 :
    我们这个元素里面的属性很多, left top width ===
    我们想要某个属性, 就应该 返回改属性,所有继续封装返回当前样式的 函数。
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            background-color: pink;
            position: absolute;
            left: 20px;
            top: 10px;
            z-index: 2;
            opacity: 0.4;
        }
    </style>
</head>
<body>
    <div id="box"></div>
    <script type="text/javascript">
        var box = document.getElementById("box");
        function getStyle(obj,attr){
            if(obj.currentStyle){
                return obj.currentStyle[attr];
            }else{
                return window.getComputedStyle(obj,null)[attr];
            }
        }
        console.log(getStyle(box,"width"));//100px
        console.log(getStyle(box,"background-color"));//IE中:pink,chrome中:rgb(255, 192, 203)
        console.log(getStyle(box,"position"));//absolute
        console.log(getStyle(box,"opacity"));//0.4
        console.log(getStyle(box,"left"));//20px
        console.log(getStyle(box,"z-index"));2
    </script>
</body>
</html>

例:运动框架的基本函数(单个属性)的封装

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            position: absolute;
            background-color: pink;
            left: 0;
            top: 60px;
        }
    </style>
    <script type="text/javascript">
        function getStyle(obj,attr){
            if(obj.currentStyle){
                return obj.currentStyle[attr];
            }else{
                return window.getComputedStyle(obj,null)[attr];
            }
        }
        function $(id){return document.getElementById(id);}
        window.onload = function () {
            var box = $("box");
            $("btn400").onclick = function () {
                animate(box,"height",600);
            }
            $("btn800").onclick = function () {
                animate(box,"left",400);
            }
        }
        function animate(obj, attr, target){
            clearInterval(obj.timer);
            obj.timer = setInterval(function () {
                var current = parseInt(getStyle(obj,attr));
                var step = (target - current)/10;
                step = step>0?Math.ceil(step):Math.floor(step);
                obj.style[attr] = current+step+"px";
                if(current == target){
                    clearInterval(obj.timer);
                }
            },20)
        }
    </script>
</head>
<body>
<button id="btn400">600</button>
<button id="btn800">400</button>
<div id="box"></div>
</body>
</html>

JSON遍历:for in遍历

for in 关键字

for (变量 in 对象)
{ 执行语句; }

例:运动框架的基本函数(多个属性)的封装

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            position: absolute;
            background-color: pink;
            left: 0;
            top: 60px;
        }
    </style>
    <script type="text/javascript">
        function getStyle(obj,attr){
            if(obj.currentStyle){
                return obj.currentStyle[attr];
            }else{
                return window.getComputedStyle(obj,null)[attr];
            }
        }
        function $(id){return document.getElementById(id);}
        window.onload = function () {
            var box = $("box");
            $("btn400").onclick = function () {
                animate(box,{left:200,top:200});
            }
            $("btn800").onclick = function () {
                animate(box,{width:200,left:200,top:200});
            }
            function animate(obj , json){
                clearInterval(obj.timer);
                obj.timer = setInterval(function () {
                    /*
                        关闭定时器的思路,不用判断多个属性都到达target,
                        只要判断有一个属性未到target,定时器就不能停止
                     */
                    //用户判断是否可以关闭定时器
                    var flag  = true;
                    //开始遍历
                    for(var attr in json){
                        //当前位置
                        var current = parseInt(getStyle(obj,attr));
                        //计算步长
                        //target = json[attr]
                        var step = (json[attr] - current)/10;
                        step = step>0?Math.ceil(step):Math.floor(step);

                        obj.style[attr] = current+step+"px";
                        if(current != json[attr]){
                            flag = false;
                        }
                    }
                    if(flag){//如果flag=true,说明多个属性都=target了
                        clearInterval(obj.timer);
                        alert("动画完成");
                    }

                },20);
            }
        }

    </script>
</head>
<body>
<button id="btn400">600</button>
<button id="btn800">400</button>
<div id="box"></div>
</body>
</html>

回调函数

例:仿360开机弹窗的动画

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        .box{
            position: fixed;
            right: 0;
            bottom: 0;
        }
        img{
            display: block;
        }
        span{
            position: absolute;
            /*background-color: pink;*/
            width: 30px;
            height: 30px;
            right: 0;
            top: 0;
            cursor: pointer;
        }
    </style>
    <script type="text/javascript">
        function getStyle(obj,attr){
            if(obj.currentStyle){
                return obj.currentStyle[attr];
            }else{
                return window.getComputedStyle(obj,null)[attr];
            }
        }
        function animate(obj , json , fn){
            clearInterval(obj.timer);
            obj.timer = setInterval(function () {
                /*
                 关闭定时器的思路,不用判断多个属性都到达target,
                 只要判断有一个属性未到target,定时器就不能停止
                 */
                //用户判断是否可以关闭定时器
                var flag  = true;
                //开始遍历
                for(var attr in json){
                    //当前位置
                    var current = parseInt(getStyle(obj,attr));
                    //计算步长
                    //target = json[attr]
                    var step = (json[attr] - current)/10;
                    step = step>0?Math.ceil(step):Math.floor(step);

                    obj.style[attr] = current+step+"px";
                    if(current != json[attr]){
                        flag = false;
                    }
                }
                if(flag){//如果flag=true,说明多个属性都=target了
                    clearInterval(obj.timer);
                    if(fn) fn();
                }

            },20);
        }
        
        window.onload = function () {
            function $(id){return document.getElementById(id);}
            var box = $("box");
            var hd = box.getElementsByTagName("div")[0];
            var bd = box.getElementsByTagName("div")[1];
            var close = $("close");
            close.onclick = function () {
                animate(bd,{height:0}, function () {
                   animate(hd.parentNode,{width:0});
                });
            }
        }
    </script>
</head>
<body>
    <div class="box" id="box">
        <span id="close"></span>
        <div class="hd">
            ![](images/t.jpg)
        </div>
        <div class="bd">
            ![](images/b.jpg)
        </div>
    </div>
</body>
</html>

in 运算符

in运算符也是一个二元运算符,但是对运算符左右两个操作数的要求比较严格。in运算符要求第1个(左边的)操作数必须是字符串类型或可以转换为字符串类型的其他类型,而第2个(右边的)操作数必须是数组或对象。只有第1个操作数的值是第2个操作数的属性名,才会返回true,否则返回false

<script type="text/javascript">
        var json = {name:"李德华",age:"45"};
        if("name" in json){
            alert("YES");
        }else{
            alert("NO");
        }
    </script>

例:运动框架的函数封装(带透明度的)

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            position: absolute;
            background-color: pink;
            left: 0;
            top: 60px;
        }
    </style>
    <script type="text/javascript">
        function getStyle(obj,attr){
            if(obj.currentStyle){
                return obj.currentStyle[attr];
            }else{
                return window.getComputedStyle(obj,null)[attr];
            }
        }
        function $(id){return document.getElementById(id);}
        window.onload = function () {
            var box = $("box");
            $("btn400").onclick = function () {
                animate(box,{left:200,top:200,opacity:40});
            }
            $("btn800").onclick = function () {
                animate(box,{width:200,left:200,top:200});
            }
            function animate(obj , json){
                clearInterval(obj.timer);
                obj.timer = setInterval(function () {
                    /*
                        关闭定时器的思路,不用判断多个属性都到达target,
                        只要判断有一个属性未到target,定时器就不能停止
                     */
                    //用户判断是否可以关闭定时器
                    var flag  = true;
                    //开始遍历
                    for(var attr in json){
                        //当前位置
                        var current;
                        if(attr == "opacity"){
                            if("opacity" in obj.style){
                                current = parseInt(getStyle(obj,attr)*100);
                            }else{//IE6、7、8
                                var alphaStr = getStyle(obj,"filter");
                                var cs = alphaStr.substring(alphaStr.lastIndexOf("=")+1 , alphaStr.lastIndexOf(")"));
                                current = isNaN(parseInt(cs))?100:parseInt(cs);
                            }

                        }else{
                            current = parseInt(getStyle(obj,attr));
                        }

                        //计算步长
                        //target = json[attr]
                        var step = (json[attr] - current)/10;
                        step = step>0?Math.ceil(step):Math.floor(step);
                        if(attr == "opacity"){//判断用户是否要修改opacity属性
                            if("opacity" in obj.style){//判断浏览器是否支持opacity属性
                                obj.style.opacity = (current+step)/100;
                            }else{
                                obj.style.filter = "alpha(opacity="+(current+step)+")";
                            }
                        }else{
                            obj.style[attr] = current+step+"px";
                        }
                        if(current != json[attr]){
                            flag = false;
                        }
                    }
                    if(flag){//如果flag=true,说明多个属性都=target了
                        clearInterval(obj.timer);
                        alert("动画完成");
                    }

                },20);
            }
        }

    </script>
</head>
<body>
<button id="btn400">600</button>
<button id="btn800">400</button>
<div id="box"></div>
</body>
</html>

例:手风琴效果

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;

        }
        ul,li{
            list-style: none;
        }
        .box{
            width: 1200px;
            height: 400px;
            margin: 50px auto;
            border: 1px solid red;
            overflow: hidden;
        }
        .box ul{
            width: 120%;
            height: 100%;
        }
        .box li{
            float: left;
            width: 240px;
            height: 400px;
            /*border: 1px solid red;*/
        }
    </style>
    <script type="text/javascript" src="animate.js"></script>
    <script type="text/javascript">
        function $(id){return document.getElementById(id);}
        window.onload = function () {
            var lis = $("ul").children;
            for(var i = 0;i<lis.length ; i++){
                lis[i].style.backgroundImage = "url(images/"+(i+1)+".jpg)";
                lis[i].onmouseover = function () {
                    for(var j = 0;j<lis.length ;j++){
                        animate(lis[j],{width:75});
                    }
                    animate(this,{width:900});
                }
            }
            $("ul").onmouseout = function () {
                for(var i = 0;i<lis.length ; i++){
                    animate(lis[i],{width:240});
                }
            }
        }
    </script>
</head>
<body>
    <div class="box">
        <ul id="ul">
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </div>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342

推荐阅读更多精彩内容