原生JS实现分享侧边栏
短信预约 -IT技能 免费直播动态提醒
本文分享一个用原生JS实现的分享侧边栏,实现效果如下:
以下是代码实现,方便大家复制粘贴。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>分享到效果</title>
<style>
#share {
position: fixed;
width: 100px;
height: 200px;
background-color: lightblue;
left: -100px;
top: 100px;
}
#share span {
width: 20px;
height: 60px;
line-height: 20px;
text-align: center;
left: 100px;
top: 70px;
position: absolute;
background-color: yellow;
}
</style>
</head>
<body>
<div id="share">
<span>分享到</span>
</div>
<script>
// 获取元素
var share = document.getElementById("share");
// 将事件设置给share
share.onmouseover = function () {
animate(this, "left", 0);
};
share.onmouseout = function () {
animate(this, "left", -100);
};
// animate运动函数
function animate(tag, attr, target) {
clearInterval(tag.timer);
tag.timer = setInterval(function () {
// 获取某个属性的当前状态
// 由于具有单位,需要取整
// parseInt("hehe") => NaN NaN || 0
// 为了应对auto转换为NaN的问题,我们使用短路操作,保证程序的健壮性
var leader = parseInt(getStyle(tag, attr)) || 0;
// 缓动公式的一部分是更改step的值
var step = (target - leader) / 10;
// 由offsetLeft在取值的时候会四舍五入,step如果比较小,会造成无法运动的问题
// 根据步数的正负,更改取整方式
step = step > 0 ? Math.ceil(step) : Math.floor(step);
// 缓动公式
leader = leader + step;
// 设置给某一个属性
tag.style[attr] = leader + "px";
// 检测是否走到了指定位置
if (leader == target) {
clearInterval(tag.timer);
}
}, 17);
}
// 用于获取某个标签的某个样式属性值
// 带单位
function getStyle(tag, attr) {
// 检测支持哪一个
// box.currentStyle,如果不存在值为undefined
// getComputedStyle如果浏览器不支持。相当于变量未声明,报错
if (tag.currentStyle) {
// ie支持
return tag.currentStyle[attr];
} else {
// 标准方法
return getComputedStyle(tag, null)[attr];
}
}
</script>
</body>
</html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341