1 Star 0 Fork 0

yyy/请问

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tab栏.html 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
yyy 提交于 2021-01-15 00:20 . jq
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
li {
float: left;
list-style: none;
width: 100px;
height: 100px;
background-color: pink;
margin-left: 15px;
}
</style>
</head>
<body>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<script src="./jQuery.min.js"></script>
<script>
// $('li').mouseover(function() {
// $(this).css({
// 'background': 'red',
// })
// .siblings().css({
// 'background': '',
// });
// });
$('li').mouseover(function() {
$(this).css({
'background': 'red',
}).siblings().css({
'background': '',
});
});
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hanxiaos/excuse-me.git
[email protected]:hanxiaos/excuse-me.git
hanxiaos
excuse-me
请问
master

搜索帮助