[JQ权威指南]第十八天:使用show()与hide()方法动画显示和隐藏图片

(1)功能描述
在页面中单击“显示”连接,通过show()方法以动画的方式显示一幅图片,同时在方法中执行一个回调函数,用于改变图片的边框样式;单击已显示的图片时,通过hide()以动画的方式隐藏该图片。
(2)实现代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="../jquery-2.1.4.js"></script>
<style type="text/css"> body{font-size:13px} img{display:none;cursor:pointer} </style>
<script type="text/javascript" > $(function(){ $("a").click(function(){ //显示连接 $("img").show(3000,function(){ $(this).css("border","solid 1px #ccc"); }) }) $("img").click(function(){ $(this).hide(3000); }) }) </script>

</head>

<body>
    <a href="javascript:void(0)">显示</a>
    <img src="Images/dezai.jpg" />
</body>
</html>

动画方式慢慢显示

你可能感兴趣的:(动画)