şeklinde. ..
javascriptle bu checkbox seçili olunca aşağıdaki css i aktifleştirmesini istiyorum. Bunu yazabilecek birisi var mıdır? Şimdiden teşekkürler.
.ac::after {
content: "\f068"!important;
}
Basit bir javascript isteği |
11 Mesajlar | 1.520 Okunma |
.ac::after {
content: "\f068"!important;
}
#touch:checked ~ .ac::after {
content: "\f068"!important;
}
#touch:checked ~ .ac::after {
content: "\f068"!important;
background-color:red;
}
.ac::after{font-family:fontawesome;float:right;right:10%;content:"\f067 ";}
.test::after{font-family:fontawesome;float:right;right:10%;content: "\f068"!important;}
jQuery(document).ready(function($){
$('.menutoggle').click (function() {
$('.menumobile').toggleClass("menuoff");
$('.menutoggle').toggleClass("buttonmove");
});
$('#touch').on('click', function() {
$("#ac").toggleClass('test');
});
});
Kategoriler
Kategoriler