<div id="box"></div>
<div class="text"></div>?
$(document).ready(function () {
$('#box').click(function () {
$('.text').slideToggle('slow');
});
});
#box{
height:40px;
width:100px;
background:red;
}
#box:hover{background:blue;}
#box:after{
content: "";
height: 10px;
position: absolute;
width: 0;
margin-top:40px;
margin-left:40px;
border: 10px solid transparent;
border-top-color: red;
}
#box:hover:after{
border-top-color: blue;
}
.text{
display:none;
height:40px;
width:100px;
background:#fd0;
margin-top:20px;
}
是否可以使用jQuery添加样式化的after
箭头?
关闭text class
时,请移除after
箭头类
如果显示text class
,则添加箭头?
我试过,但似乎不起作用
答案 0 :(得分:2)
根据@elclanrs的评论,你不能用JS添加伪元素。但是,您可以做的是在CSS中声明它们仅在父元素具有特定类时显示,然后使用JS切换此类,如下所示:
#box.expanded:after {
content:'';
height: 10px;
position: absolute;
width: 0;
margin-top:40px;
margin-left:40px;
border: 10px solid transparent;
border-top-color: red;
}
您还必须在JS中添加一行,以便在单击框时添加此类:
$('#box').click(function () {
$(this).toggleClass('expanded');
$('.text').slideToggle('slow');
});
请参阅此处的示例:http://jsfiddle.net/zfQvD/17/