我試圖寫代碼,我可以切換一個div的CSS屬性div的CSS屬性。基本上我試圖創建一個具有正常狀態和活動狀態的按鈕。切換使用jQuery/JavaScript的
其正常的顏色是藍色,但一旦你點擊它,它就會變成綠色。再次點擊它,它會變回藍色。
CSS:
.lblue{
-moz-border-radius: 3px;
border-radius: 3px;
box-shadow: 0 1px 2px #fff, /*bottom external highlight*/
0 -1px 1px #666, /*top external shadow*/
inset 0 -1px 1px rgba(0,0,0,0.5), /*bottom internal shadow*/
inset 0 1px 1px rgba(255,255,255,0.8); /*top internal highlight*/
font-size: 16pt;
padding: 5px;
margin: 5px;
color: white;
background: #4bc2d3; /* Old browsers */
background: -moz-linear-gradient(top, #4bc2d3 0%, #70d6e2 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4bc2d3), color-stop(100%,#70d6e2)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #4bc2d3 0%,#70d6e2 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #4bc2d3 0%,#70d6e2 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #4bc2d3 0%,#70d6e2 100%); /* IE10+ */
background: linear-gradient(to bottom, #4bc2d3 0%,#70d6e2 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4bc2d3', endColorstr='#70d6e2',GradientType=0); /* IE6-9 */
font-family: OpenSans-Semibold;
float: left;
}
.lgreen{
-moz-border-radius: 3px;
border-radius: 3px;
box-shadow: 0 1px 2px #fff, /*bottom external highlight*/
0 -1px 1px #666, /*top external shadow*/
inset 0 -1px 1px rgba(0,0,0,0.5), /*bottom internal shadow*/
inset 0 1px 1px rgba(255,255,255,0.8); /*top internal highlight*/
font-size: 16pt;
padding: 5px;
margin: 5px;
color: white;
background: #7ebb44; /* Old browsers */
background: -moz-linear-gradient(top, #7ebb44 0%, #a5d063 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7ebb44), color-stop(100%,#a5d063)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #7ebb44 0%,#a5d063 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #7ebb44 0%,#a5d063 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #7ebb44 0%,#a5d063 100%); /* IE10+ */
background: linear-gradient(to bottom, #7ebb44 0%,#a5d063 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ebb44', endColorstr='#a5d063',GradientType=0); /* IE6-9 */
font-family: OpenSans-Semibold;
float: left;
}
HTML:
<div class="lblue">Soul</div>
JS:
$('.lblue').click(function() {
$('.lblue').toggle(function() {
$('.lblue').addClass('lgreen');
});
});
我的代碼的問題是,由於某種原因,當我點擊按鈕,該按鈕消失就好像它正在滑出一樣。
在回調中使用'$(this)',否則可能會遇到問題。 – bobthyasian
是的,我的壞,謝謝。 –
沒問題。我收回我的-1 :) – bobthyasian