文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

JavaScript函数封装的示例详解

2024-04-02 19:55

关注

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .box1 {
            width: 30px;
            height: 30px;
            background-color: pink;
            position: absolute;
            top: 100px;
            right: 0px;
            z-index: 1;
        }
        
        .box2 {
            width: 140px;
            height: 30px;
            background-color: purple;
            position: absolute;
            top: 100px;
            right: -140px;
        }
        
        .box {
            width: 400px;
            height: 1000px;
            border: 1px solid grey;
            position: relative;
            overflow: hidden;
        }
    </style>
</head>
 
<body>
    <div class="box">
        <div class="box1">^</div>
        <div class="box2">会员内容</div>
    </div>
 
    <script>
        //鼠标经过box1的时候,box2就往左边移140px;
        var box1 = document.querySelector('.box1')
        var box2 = document.querySelector('.box2')
        var a = box2.offsetLeft
        box1.addEventListener('mouseover', function() {
            animate(box2, a - 140)
        })
 
        box1.addEventListener('mouseout', function() {
            animate(box2, a + 140)
        })
 
        function animate(obj, target, callback) {
            clearInterval(obj.timer) //先把原先地定时器清除之后,再开启另外一个新地定时器
            obj.timer = setInterval(fn, [15])
 
            function fn() {
                var a = obj.offsetLeft //不能换成div.style.left 不然会只移动一次。注意读取位置永offset,修改永style
                var step = (target - a) / 10
                step = step > 0 ? Math.ceil(step) : Math.floor(step) //将结果赋值回去
                    //把步长值改为整数,不要出现小数的情况
                if (a == target) {
 
                    //取消定时器
                    clearInterval(obj.timer)
                        //执行回调函数 函数名+()回调函数写到定时器结束里面
                        //首先判断没有有这个回调函数
                    if (callback) {
                        callback()
                    }
 
                }
 
                obj.style.left = a + step + 'px'
 
            }
        }
        //鼠标离开的时候,box2就往右边移140px
    </script>
</body>
 
</html>

这个下面看着就头晕

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .box1 {
            width: 30px;
            height: 30px;
            background-color: pink;
            position: absolute;
            top: 100px;
            right: 0px;
            z-index: 1;
        }
        
        .box2 {
            width: 140px;
            height: 30px;
            background-color: purple;
            position: absolute;
            top: 100px;
            right: -140px;
        }
        
        .box {
            width: 400px;
            height: 1000px;
            border: 1px solid grey;
            position: relative;
            overflow: hidden;
        }
    </style>
    <script src="animater.js"></script>
</head>
 
<body>
    <div class="box">
        <div class="box1">^</div>
        <div class="box2">会员内容</div>
    </div>
 
    <script>
        //鼠标经过box1的时候,box2就往左边移140px;
        var box1 = document.querySelector('.box1')
        var box2 = document.querySelector('.box2')
        var a = box2.offsetLeft
        box1.addEventListener('mouseover', function() {
            animate(box2, a - 110)
        })
 
        box1.addEventListener('mouseout', function() {
            animate(box2, a + 110)
        })
    </script>
</body>
 
</html>

先将js单独写在一个独立的文件中。

之后直接使用函数。但在此之前要先引入JS文件

    <script>
        //鼠标经过box1的时候,box2就往左边移140px;
        var box1 = document.querySelector('.box1')
        var box2 = document.querySelector('.box2')
        var img = document.querySelector('img')
        var a = box2.offsetLeft
        box1.addEventListener('mouseover', function() {
            animate(box2, a - 110, callback)
        })
 
        box1.addEventListener('mouseout', function() {
            animate(box2, a + 110, callback1)
        })
    </script>

JS单独文件:

function animate(obj, target, callback) {
    clearInterval(obj.timer) //先把原先地定时器清除之后,再开启另外一个新地定时器
    obj.timer = setInterval(fn, [15])
 
    function fn() {
        var a = obj.offsetLeft //不能换成div.style.left 不然会只移动一次。注意读取位置永offset,修改永style
        var step = (target - a) / 10
        step = step > 0 ? Math.ceil(step) : Math.floor(step) //将结果赋值回去
            //把步长值改为整数,不要出现小数的情况
        if (a == target) {
 
            //取消定时器
            clearInterval(obj.timer)
                //执行回调函数 函数名+()回调函数写到定时器结束里面
                //首先判断没有有这个回调函数
            if (callback) {
                callback()
            }
 
        }
 
        obj.style.left = a + step + 'px'
 
    }
}
 
function callback() {
    img.src = '10-右.png'
    img.style.width = '50%'
}
 
function callback1() {
    img.src = '9-左.png'
    img.style.width = '50%'
}

觉得在图标不是很多的时候用iconfont要方便很多。单数如果图标很多,就用lcoMoon来导入图标。或者使用精灵图等来设置

以上就是JavaScript函数封装的示例详解的详细内容,更多关于JavaScript函数封装的资料请关注编程网其它相关文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯