后台登录弹跳特效【原创

来源:https://www.sucaihuo.com/js/3184.html 2017-11-01 07:26浏览(3220) 收藏

打开页面,登录框开始仿重力向下弹跳,背景轮播,后台管理员通用登录后台模板
后台登录弹跳特效
分类:表单代码 > 注册登录框 难易:初级
查看演示 下载资源 下载积分: 15 积分
var oMove=document.querySelectorAll('.move');
        var len=oMove.length;
        var timer=null;
        var timeout=null;
        var speed=3;
        move(len-1);
        function move(index){
            if(index<0){
                clearInterval(timer);
                clearTimeout(timeout);
                return;
            }
            var end=150+(index*60);
            timer=setInterval(function(){
                speed+=3;
                var T=oMove[index].offsetTop+speed;
                if(T>end){
                    T=end;
                    speed*=-1;
                    speed*=0.4;
                }
                oMove[index].style.top=T+'px';
            },20);
            timeout=setTimeout(function () {
                clearInterval(timer);
                index--;
                move(index);
            },900);
        }
标签: 登录
声明:本文为原创文章,如需转载,请注明来源sucaihuo.com并保留原文链接:https://www.sucaihuo.com/js/3184.html
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2