运行代码 缩小
喵记
HTML代码
复制 格式化 注释 注释 清空
放大
AخA
 
1
<!DOCTYPE html>
2
<html>
3
    <head>
4
        <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
5
        <script type="text/javascript" src="//apps.bdimg.com/libs/jquery/1.11.3/jquery.min.js"></script>
6
    </head>
7
    <body>
8
        <p>
9
        <img alt="示例图片" title="示例图片" src="http://ku.shouce.ren/img/zhong/time.png">
10
            <span id = "txt">前面是张图片</span>
11
            <input type = "button" id ="btn" value = "隐藏图片" />
12
        </p>
13
        <input type="button" id="btn1" style = "color:green" value = "显示出图片,并慢慢隐藏此按钮"/>
14
        <input type = "button" id = "btn2" value = "按透明程度显示出图片" />
15
        <input type = "button" id = "btn3" value = "按透明程度慢慢隐藏 "/>
16
        <input type = "button" id = "btn4" value = "从上到下展开 "/>
17
        <input type = "button" id = "btn5" value ="从下到上慢慢隐藏,展开完提示完成"/>
18
    </body>
19
</html>
CSS代码
复制 格式化 注释 注释 颜色 清空
放大
x
 
1
body {
2
    background-image: url(/themes/zhan/styles/images/bg-body.jpg);
3
}
4
.main {
5
    width: 80%;
6
    margin: auto;
7
    text-align: center;
8
    border: 1px solid #e0e0e0;
9
    box-shadow: 0 0 2px #ddd;
10
    word-wrap: break-word;
11
    padding: 10px;
12
    border-radius: 3px
13
}
14
img{
15
display:none;
16
}
17
JS代码
复制 格式化 注释 注释 清空
放大
xxxxxxxxxx
24
 
1
$(document).ready(function(){
2
  $("#btn").on("click",function(){
3
    $("img").hide();
4
  });
5
  $("#btn1").on("click",function(){
6
    $("img").show();
7
    $(this).hide("slow");
8
  });
9
  $("#btn2").on("click",function(){
10
    $("img").fadeIn();
11
  });
12
  $("#btn3").on("click",function(){
13
    $("img").fadeOut(3000);
14
  });
15
  $("#btn4").on("click",function(){
16
    $("img").slideDown();
17
  });
18
  $("#btn5").on("click",function(){
19
    $("img").slideUp(3000,function(){
20
        alert("完成");
21
    });
22
  });
23
});
24
名称
9.9简单动画
分类
jQuery实例
描述
显示,隐藏,透明度,向下或上展示出来
收藏