我想放置阴影/模糊div id = "test"
对话框的背景,我尝试使用 jquery ui 提供的类 .ui-widget-shadow / .ui-widget-overlay 但它似乎无法正常工作。有什么办法可以做到这一点?谢谢。
<style>
div {
display: none;
width: 90%;
height: 95%;
margin-left:5%;
background: #ccc;
border: 1px solid #000;
}
div img {
display: inline;
margin-left:5%;
}
</style>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
</head>
<body>
<button>show the div</button>
<div id = 'test'> <img src = 'image.png'></div>
<script>
$( "button" ).click(function() {
$( "div" ).show( "scale", 180 );
});
$( "#test" ).dblclick(function() {
$( "#test" ).hide( "scale", 200 );
});
</script>