Created
April 23, 2010 12:28
-
-
Save qichunren/376490 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>MODAL DEMO</title> | |
<script type="text/javascript" src="jquery-1.3.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
function show_windows(window_id){ | |
height = $(document).height(); | |
$("<div></div>").attr("id", "mask").css({position:'absolute',width:'100%',left:'0px',top:'0px',background:'#000',filter:'alpha(opacity=25)',opacity:'0.25','z-index':5000,display:'none'}). | |
height(height ).appendTo("body").animate({ | |
opacity: 'toggle' | |
}, "fast"); | |
} | |
$("#btn").click( | |
function(event){ | |
this.value="clicked"; | |
show_windows(); | |
} | |
); | |
}); | |
</script> | |
</head> | |
<body> | |
<div id="notice" > | |
收藏 | |
</div> | |
<input id="btn" type="button" value="test" /> | |
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> | |
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment