翻译learningJquery.com上一篇关于 弹出对话框效果 的文章
时间:2009-06-10
来源:互联网
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<script type="text/javascript" src="jquery-1.3.2.js">
</script>
<style type="text/css">
.quick-alert {
width: 200px;
margin: 1em 60px;
padding: .5em;
background: #000000;
border: 0px solid #300;
color: #ffffff;
font-weight: bold;
display: none;
z-index:100;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#show-alert').click(function(){
$('<div class="quick-alert">弹出一条消息,然后消息自动隐藏,机制是删掉自己</div>')
.insertAfter($(this))
.fadeIn('slow')
.animate({opacity: 10.0}, 3000)
.fadeOut('slow', function(){ $(this).remove();});
});
});
</script>
</head>
<body>
<input type="submit" id="show-alert" value="点我" />
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<script type="text/javascript" src="jquery-1.3.2.js">
</script>
<style type="text/css">
.quick-alert {
width: 200px;
margin: 1em 60px;
padding: .5em;
background: #000000;
border: 0px solid #300;
color: #ffffff;
font-weight: bold;
display: none;
z-index:100;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#show-alert').click(function(){
$('<div class="quick-alert">弹出一条消息,然后消息自动隐藏,机制是删掉自己</div>')
.insertAfter($(this))
.fadeIn('slow')
.animate({opacity: 10.0}, 3000)
.fadeOut('slow', function(){ $(this).remove();});
});
});
</script>
</head>
<body>
<input type="submit" id="show-alert" value="点我" />
</body>
</html>
作者: yangmaomao 发布时间: 2009-06-10
效果还不错,以后随时翻译文章过来给大家看
作者: yangmaomao 发布时间: 2009-06-10
不错..又学了...新手很合适...

作者: jamix 发布时间: 2009-06-11
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28