慕粉studying
2016-11-11 14:14
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title></title>
<style>
.left div,
.right div {
width: 500px;
height: 50px;
padding: 5px;
margin: 5px;
float: left;
border: 1px solid #ccc;
}
.left div {
background: #bbffaa;
}
.right div {
background: yellow;
}
#a1{display:none !important;}
</style>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>
<body>
<h2>hide-show</h2>
<div class="left">
<div id="a1">hide-show</div>
<button>直接hide-show动画</button>
<script type="text/javascript">
//点击button
//执行3秒隐藏
//执行3秒显示
$("button").click(function() {
$("#a1").css('display', 'block !important');
$("#a1").show(3000);
});
</script>
</body>
</html>
http改成https
加了这个!important,show方法就不能把display来回切换了 需要你自己显示 然后show方法提供动画 从 width=0和height=0变会原来值,就是说 你需要自己用disoaly:block !important显示出来 但是 显示出来了 盒子宽高还是0 ,需要继续动画变会原来的值。
这个问题挺无解的,教程方法二肯定错的,我用attr('style','display:block !important')虽然样式可以切换了,但没有动画效果了,show()加不加,动画效果都一样
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title></title>
<style>
.left div,
.right div {
width: 500px;
height: 50px;
padding: 5px;
margin: 5px;
float: left;
border: 1px solid #ccc;
}
.left div {
background: #bbffaa;
}
.right div {
background: yellow;
}
#ai {
display:none!important;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>
<body>
<h2>hide-show</h2>
<div class="left">
<div id="a1">hide-show</div>
<button>直接hide-show动画</button>
<script type="text/javascript">
//点击button
//执行3秒隐藏
//执行3秒显示
/* $("button").click(function() {
var flag=1;
while(flag=2)
{
$("#a1").hide(3000).show(3000)
}
});*/
$('#a1').on('mousedown mouseclick',function(){
$('#a1').css('display', 'block !important');
$("#a1").hide(3000).show(3000)
})
</script>
</body>
</html>
if ( display === true ) {
$( "elem" ).show();
} else if ( display === false ) {
$( "elem" ).hide();
}
jQuery基础(四)—动画篇
85049 学习 · 262 问题
相似问题