【发布时间】:2016-03-01 00:38:54
【问题描述】:
我是 JS 新手。
我试图通过这样做在向现有 CSS 添加一些 CSS 代码之间切换(我认为这是 JQuery)。
$('#navIt').click(function () {
$('#navIt').addClass('.drop', $(window).width() < 600);
}, function () {
$('#navIt').removeClass('.drop', $(window).width() < 600);
});
我不知道这是否是正确的代码。我从here 和here 找到了这个,但它似乎对我不起作用。
HTML
<div id="navIt" class="nav">
<ul>
<li class="current"><a>Portfolio</a></li>
<li><a>Illustration</a></li>
<li><a>Web Design</a></li>
<li><a>Print Media</a></li>
<li><a>Graphic Design</a></li>
</ul>
</div>
CSS
/* nav */
.nav {
position: relative;
margin: 20px 0;
}
.nav ul {
margin: 0;
padding: 0;
}
.nav li {
margin: 0 5px 10px 0;
padding: 0;
list-style: none;
display: inline-block;
}
.nav a {
padding: 3px 12px;
text-decoration: none;
color: #999;
line-height: 100%;
}
.nav a:hover {
color: #000;
}
.nav .current a {
background: #999;
color: #fff;
border-radius: 5px;
}
/* right nav */
.nav.right ul {
text-align: right;
}
/* center nav */
.nav.center ul {
text-align: center;
}
@media screen and (max-width: 600px) {
.nav {
position: relative;
min-height: 40px;
}
.nav ul {
width: 180px;
padding: 5px 0;
position: absolute;
top: 0;
left: 0;
border: solid 1px #aaa;
background: #fff url(images/icon-menu.png) no-repeat 10px 11px;
border-radius: 5px;
box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.nav li {
display: none; /* hide all <li> items */
margin: 0;
}
.nav .current {
display: block; /* show only current <li> item */
}
.nav a {
display: block;
padding: 5px 5px 5px 32px;
text-align: left;
}
.nav .current a {
background: none;
color: #666;
}
/* right nav */
.nav.right ul {
left: auto;
right: 0;
}
/* center nav */
.nav.center ul {
left: 50%;
margin-left: -90px;
}
}
@media screen and (max-width: 600px) {
/*on click hover */
.drop ul {
background-image: none;
}
.drop ul li {
display: block;
margin: 0 0 5px;
}
.drop ul .current {
background: url(images/icon-check.png) no-repeat 10px 7px;
}
}
最后,我想做的是,如果窗口大小小于 600,我应该能够在 .drop 类之间切换。
你知道怎么做吗?
【问题讨论】:
-
使用 addClass 或 removeClass 时,不需要在括号内指定句点(.)。此外,第二个功能是应用到 mouseenter-mouseleave 事件。你想获得悬停效果吗?
-
@DinoMyte 我试图在点击加载
.drop类时获得一个切换事件
标签: javascript jquery html css