我正在尝试更改<div>
的背景颜色,但它对我不起作用。我不知道问题是什么
我使用bootstrap中的类col-md-2
但是出了点问题。
以下是我的代码示例:
$(document).ready(function() {
$(".text-center").hover(function () {
$(this).addClass("BlueClass");
}, function() {
$(this).removeClass("BlueClass");
});
});
#interiormenu3 {
width: 150px;
height: 43px;
background-color: #428cba;
position: relative;
top: 65px;
border-radius: 25px;
border-color: #737373;
border-style: solid;
border-width: 3px;
}
.opcion3 {
line-height: 35px;
color: white;
font-family: "Oswald";
font-weight: bold;
}
.BlueClass {
line-height: -35px;
color: white;
font-family: "Oswald";
font-weight: bold;
width: 150px;
height: 43px;
background-color: #FFFFFF;
position: relative;
top: 35px;
border-radius: 25px;
border-color: #2A5EC7;
border-style: solid;
border-width: 3px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="col-md-2" id="interiormenu3">
<div class="text-center">
<a href="#" class="opcion3">Portafolio</a>
</div>
</div>
答案 0 :(得分:0)
我只是在这里猜测;但似乎你想做一个简单的菜单项悬停。我不会为此使用jQuery。你可以单独使用CSS。
#interiormenu3 {
width: 150px;
height: 43px;
background-color: #428cba;
position: relative;
top: 65px;
border-radius: 25px;
border-color: #737373;
border-style: solid;
border-width: 3px;
}
.text-center {
text-align: center;
}
opcion3 {
line-height: 35px;
color: white;
font-family: "Oswald";
font-weight: bold;
}
.text-center:hover {
line-height: -35px;
color: white;
font-family: "Oswald";
font-weight: bold;
width: 150px;
height: 43px;
background-color: #FFFFFF;
border-radius: 25px;
border-color: #2A5EC7;
border-style: solid;
border-width: 3px;
margin-top: -3px;
margin-left: -3px;
}
&#13;
<div class="col-md-2" id="interiormenu3">
<div class="text-center">
<a href="#" class="opcion3">Portafolio</a>
</div>
</div>
&#13;
答案 1 :(得分:0)
$(document).ready(function() {
$(".text-center").on('mouseover',function() {
$(this).parent().addClass('interiormenu3red');
});
$(".text-center").on('mouseleave',function() {
$(this).parent().removeClass('interiormenu3red');
})
});
#interiormenu3{
width: 150px;
height: 43px;
background-color: #428cba;
position: relative;
top:65px;
border-radius:25px;
border-color:#737373;
border-style: solid;
border-width: 3px;
}
.interiormenu3red{
background-color: red!important;
}
opcion3{
line-height: 35px;
color:white;
font-family: "Oswald";
font-weight: bold;
}
.text-center {
width: 100%;
height: 100%;
text-align:center;
padding-top: 10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="col-md-2" id="interiormenu3" >
<div class="text-center" >
<a href="#" class="opcion3">Portafolio</a>
</div>
</div>