1 Star 0 Fork 0

tgy100/jd_css

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base.js 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
tgy100 提交于 2018-01-03 16:20 . 右侧选择
/**
* Created by tgy on 2018/1/3.
*/
window.onload = function () {
var shortcut = document.getElementsByClassName("nav-lef")[0];
var top = shortcut.getElementsByClassName("top")[0];
var down = shortcut.getElementsByClassName("down")[0];
// shortcut.onmouseover
shortcut.addEventListener('mouseover',function () {
show(down);
})
// shortcut.onmouseout
shortcut.addEventListener("mouseout", function () {
hide(down);
// this.style.borderBottomColor = "#000";
})
}
function show(el) {
el.className = el.className.replace("hide","show");
}
function hide(el) {
el.className = el.className.replace("show","hide");
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
CSS
1
https://gitee.com/tgy100/jd_css.git
[email protected]:tgy100/jd_css.git
tgy100
jd_css
jd_css
master

搜索帮助