html点击按钮怎么d出一个浮动的窗体?

html点击按钮怎么d出一个浮动的窗体?,第1张

首先根据需求我们需要一个按钮,一个d出窗口层;\x0d\x0aOK,废话不多说;\x0d\x0a按钮就用一个基本的:\x0d\x0aClick me\x0d\x0a我是浮动的窗口\x0d\x0a\x0d\x0a我们要给浮动层设置一下样式\x0d\x0a.dialog{width:200pxheight:200pxborder:solid 1px #000position:absoluteright:10pxtop:100pxline-height:200pxtext-align:centerdisplay:none}\x0d\x0a\x0d\x0aOK ,下面就是JS部分:\x0d\x0a首先需要引入一个JS库,版本自己定义:\x0d\x0a然后给按钮添加相应的点击事件,让点击button的时候,显示出浮动层\x0d\x0a$(".btn").click(function(){\x0d\x0a$(".dialog").show(100)\x0d\x0a}) 回答于 2022-11-16

悬浮按钮只需要设置按钮positi的属性为fixed即可。

例子:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>浮动按钮</title>

    <style>

        *

        {

            margin: 0px

            padding: 0px

        }

        #container

        {

            width: 1000px

            height: 3000px

            background-color: #1b6d85

            margin: auto

        }

        #div1

        {

            height: 600px

            background-color: #255625

        }

        #div2

        {

            height: 600px

            background-color: #c0a16b

        }

        #div3

        {

            height: 600px

            background-color: #b92c28

        }

        #div4

        {

            height: 600px

            background-color: #449d44

        }

        #div5

        {

            height: 600px

            background-color: #999999

        }

        .btn-style

        {

            width: 30px

            height: 120px

            position: fixed/*此处即是固定按钮位置的属性。*/

            left: 1500px

            top: 400px

        }

    </style>

</head>

<body>

<button class="btn-style">这是一个浮动按钮</button>

<div id="container">

<div id="div1">第一节</div>

    <div id="div2">第二节</div>

    <div id="div3">第三节</div>

    <div id="div4">第四节</div>

    <div id="div5">第五节</div>

</div>

</body>

</html>

效果图:

需要准备的材料分别有:电脑、浏览器、html编辑器

1、首先,打开html编辑器,新建html文件,例如:index.html,输入问题基础代码。

2、在index.html中的<body>标签中,输入js代码:

function fun() {

alert('click success!')

}

3、浏览器运行index.html页面,此时点击按钮d出了提示框。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7012597.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-31
下一篇 2023-03-31

发表评论

登录后才能评论

评论列表(0条)

保存