jQuery实现点击弹出层3秒后自动消失

jQuery实现点击弹出层3秒后自动消失


<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>jQuery实现点击弹出层3秒后自动消失title>
    <link rel="stylesheet" type="text/css" href="../reset.css">
    <link rel="stylesheet" type="text/css" href="style.css">
    <script type="text/javascript" src="../jquery-1.9.1.js">script>
    <style type="text/css">
        #dianji{text-align: center;margin-top: 50px;font-size: 30px;color:#000;display: block;}
        #disappare{border:3px solid #ccc;border-radius: 5px;background: #fff;font-size: 20px;
            width: 300px;height: 250px;position: fixed;top:50%;left: 50%;margin:-125px 0 0 -150px;}
        #disappare h2{height: 35px;line-height: 35px;background: #ddd;text-indent: 5px;}
        #disappare p{padding: 5px;font-size: 16px;}
    style>
head>
<body>
    <div id="content">
        <a id="dianji">点击a>
        <div id="disappare" style="display:none;">
            <h2>标题h2>
            <p>3秒后我会自动消失3秒后我会自动消失p>
        div>
    div>
<script type="text/javascript">
    $(function(){
        $("#dianji").click(function(){
            $("#disappare").show().delay(3000).hide(300);
        });
    })
script>   
body>
html>

jQuery实现点击弹出层3秒后自动消失_第1张图片

你可能感兴趣的:(前端,3秒自动消失)