欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML 练习淡入淡出

程序员文章站 2023-11-16 12:29:52
``` Title ``` ......
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>title</title>
    <script src="jquery-3.3.1.min.js"></script>
</head>
<body>
<div id="div" style="display:none; width:200px; height:200px; background-color:rebeccapurple"></div>
<input id="fadein" type="button" value="fadein">
<input id="fadeout" type="button" value="fadeout">
<input id="fadetoggle" type="button" value="fadetoggle">
<input id="fadeto" type="button" value="fadeto">
</body>
<script>
    $("#fadein").click(function(){
        $("div").fadein(1000);
    })
    $("#fadeout").click(function(){
        $("div").fadeout(1000);
    })
    $("#fadetoggle").click(function(){
        $("div").fadetoggle(1000);
    })
    $("#fadeto").click(function(){
        $("div").fadeto(1000, 0.5);
    })

</script>
</html>