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

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


<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>

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

你可能感兴趣的:(前端设计,JQuery)