ÄR *_*îñh 8 html javascript css jquery css3
当@media屏幕和(max-width:500px)处于活动状态时删除类.fade.我怎样才能做到这一点?我的脚本如下.
@media screen and (max-width: 500px) {
.post_profile_image{
width:35px;
height:35px
}
.fade{
/* Remove this class */
}
}
<div id="myModal" class="modal fade" role="dialog">
Run Code Online (Sandbox Code Playgroud)
小智 7
$(window).resize(function(){
If($(window).width()<500){
$('.fade').removeClass('fade');
}
});
Run Code Online (Sandbox Code Playgroud)