我想显示一个带有灰色背景(父div)的模态窗口(div)。由于我不明白的原因,应用于模态窗口的转换仅在父元素的显示属性未更改时才有效。
应该显示转换,因为应用了不透明度的CSS转换,我通过添加类'show'将不透明度更改为1。
正确更改了不透明度:我的窗口可见。但是,没有显示转换。
小提琴:http://jsfiddle.net/3CD7U/1/
HTML
<button id="button">click me</button>
<div id="background">
<div id="box">
<h1>Modal window</h1>
<p>I'd expect to see a transition when adding the show class. Unfortunately, the transition is only shown when the parent's display property isn't changed at the same time.</p>
<p id="show-later">Here the transition is applied correctly, because of a delay. To work reliably however, the delay seems to have to be over 100ms, making the UI seem sluggish.<p>
</div>
</div>
CSS
#background{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: silver;
}
#box{
position: relative;
width: 50%;
margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding: 20px;
background: white;
border: 1px solid grey;
opacity: 0;
}
#show-later{
opacity: 0;
}
#box.show,
#show-later.show{
opacity: 1;
transition: opacity 500ms linear;
}
JQuery的
$("#background").hide();
$("#button").click( function(){
$("#background").show();
$("#box").addClass("show");
setTimeout( function(){
$("#show-later").addClass("show");
}, 2000);
})
我不想仅依靠改变不透明度,因为旧的浏览器。
我见过其他带有过渡模式窗口的网站,但是我无法弄清楚为什么这些工作和我的小提琴没有。
我有一个解决方法:在必须显示模态窗口时添加一个包含动画的类,但它不像仅仅应用/删除带有过渡的CSS类一样干净。
如何正确地将转换添加到从display:none更改的元素的想法是受欢迎的。
答案 0 :(得分:0)