<!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>
* {
padding: 0;
margin: 0;
list-style: none;
box-sizing: border-box;
}
.bd {
width: 200px;
height: 200px;
/* background: #000; */
line-height: 200px;
position: absolute;
left: -150px;
}
.bd div:nth-child(1) {
width: 150px;
height: 150px;
background: red;
margin-top: 25px;
float: left;
}
.bd div:nth-child(2) {
width: 50px;
height: 50px;
background: black;
/* margin-top: 25px; */
float: left;
margin-top: 75px;
font-size: 20px;
text-align: center;
line-height: 50px;
color: white
}
</style>
</head>
<body>
<div class="bd">
<div></div>
<div>拉开</div>
</div>
<script src='/js/animation-2.js'></script>
<script>
var bd = document.querySelector(".bd")
var sp = bd.children[1];
// console.log(sp);
bd.onmouseover = function () {
animation(bd, "left", 0,function() {
console.log('xxxxx');
})
}
bd.onmouseout = function () {
animation(bd, "left", -150)
}
</script>
</body>
</html>
---------------------------------------------------------------------------------------------------------------------------------------------------
function animation(obj,atter,end,fn){
clearInterval(obj.time)
var speed =0 ;
obj.time = setInterval(() => {
//1.获取属性初始数值 需要实时获取
var cur = parseInt(getstyle(obj,atter))
//2.加速度 = 结束数值 - 起始数值 /系数
speed = (end - cur) /20
speed = end > cur ? Math.ceil(speed):Math.floor(speed)
obj.style[atter] = cur+speed+'px'
//3.临界问题
if(obj.style[atter] === end){
clearInterval(obj.time)
if (fn){
fn();
}
return;
}
},20)
}
function getstyle(obj,atter){
return getComputedStyle(obj,null)[atter]
}
js动画函数,后面的回调函数无法执行
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
3条回答 默认 最新
关注 你的 end 是一个数值,而你的 obj.style[atter] 得到的是一个带单位的数据 '0px',你需要自己把他们的类型弄一致了
function animation(obj,atter,end,fn){ clearInterval(obj.time) var speed =0 ; obj.time = setInterval(() => { //1.获取属性初始数值 需要实时获取 // 因为我本地没有那个js文件,修改成原生js var cur = obj.style[atter] ? parseInt(obj.style[atter].replace('px','')) : -150 // parseInt(getstyle(obj,atter)) //2.加速度 = 结束数值 - 起始数值 /系数 speed = (end - cur) /20 speed = end > cur ? Math.ceil(speed):Math.floor(speed) obj.style[atter] = cur+speed+'px' //3.临界问题 if(obj.style[atter] === end + 'px'){ // 此处修改为单位一致 clearInterval(obj.time) if (fn){ fn(); } return; } },20) }
解决 无用评论 打赏 举报 编辑记录
悬赏问题
- ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
- ¥15 用visualstudio2022创建vue项目后无法启动
- ¥15 x趋于0时tanx-sinx极限可以拆开算吗
- ¥500 把面具戴到人脸上,请大家贡献智慧
- ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
- ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
- ¥30 c#打开word开启修订并实时显示批注
- ¥15 如何解决ldsc的这条报错/index error
- ¥15 VS2022+WDK驱动开发环境
- ¥30 关于#java#的问题,请各位专家解答!