主頁 > 知識(shí)庫 > html浮動(dòng)提示框功能的實(shí)現(xiàn)代碼

html浮動(dòng)提示框功能的實(shí)現(xiàn)代碼

熱門標(biāo)簽:貴陽ai外呼系統(tǒng) 電話機(jī)器人批發(fā) 強(qiáng)訊外呼系統(tǒng) 智能電銷機(jī)器人廣告語 愛巢地圖標(biāo)注 重慶人工智能電銷機(jī)器人報(bào)價(jià) 電銷外呼線路改不外呼線路 長(zhǎng)春極信防封電銷卡公司 crm外呼系統(tǒng)好不好

一般的表單提示總會(huì)占據(jù)表單的位置,讓表單邊長(zhǎng),或者變寬,影響布局,但如果讓提示框像對(duì)話框一樣浮在所需內(nèi)容旁邊就可以解決這一問題。

HTML及樣式

首先做一張表單

<div id="form-block">
        <h1>注冊(cè)</h1>
        <form id="form-form" class="center-block">
            <div>
                <input id="email" class="form-control" placeholder="電子郵箱">
            </div>
            <div>
                <input id="vrf" class="form-control" placeholder="驗(yàn)證碼">
        </form>
    </div>
</div>

 

然后我們需要設(shè)計(jì)一下對(duì)話框

大概就是這樣,由一個(gè)三角形和矩形組成。

 

  #tips{
            padding-top: 6px;
            z-index: 9999;
            /*讓對(duì)話置頂以免被其他元素遮擋*/
            position: fixed;
            width: 1000px;
        }
        #form-tips{
            background-color: black;
            color: #ffffff;
            padding: 0 6px;
            position: absolute;
        }
        #triangle{
            border:10px solid;
            border-color: transparent black transparent transparent;
        }

<div id="alter">
    <label id="triangle"></label>
    <label id="form-alert">這是一個(gè)提示</label>
</div>

 

三角形怎么來的?參考這篇經(jīng)驗(yàn)

js實(shí)現(xiàn)浮動(dòng)

頁面已經(jīng)做好了,現(xiàn)在我們需要一個(gè)函數(shù)來改變對(duì)話框的內(nèi)容和位置。

 

const TIPS = document.getElementById("tips");
//msg是提示信息,obj是需要提示的元素
function showTips(msg, obj) {
        TIPS.style.display = "block";//顯示隱藏的對(duì)話框
        var domRect = obj.getBoundingClientRect();//獲取元素的位置信息
        var width = domRect.x+obj.clientWidth; //顯示在元素后面,所以加上元素的寬
        var height = domRect.y;
        TIPS.style.top = height+"px";
        TIPS.style.left = width+"px";
        document.getElementById("form-tips").innerHTML = msg; //改變對(duì)話框文字
        obj.onblur = function () {
            TIPS.style.display = "none";//元素失焦時(shí)隱藏對(duì)話框
            //這里由于我是用在表格,所以使用了失焦,根據(jù)需要修改
        };
        window.onresize = function (ev) {
            showTips(msg, obj);//當(dāng)窗口改變大小時(shí)重新計(jì)算對(duì)話框位置
        }
    }

 

效果圖

完整代碼d

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="../static/css/bootstrap.css">
    <style>
        body,html{
            background-color: #70a1ff;
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
        }
        body *{
            transition-duration: 500ms;
        }
        #form-block{
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 500px;
            height: 200px;
            background-color: #f1f2f6;
            transform: translateY(-50%) translateX(-50%);
            box-shadow: 0 0 10px #000000;
        }
        #form-form{
            width: 70%;
        }

        #form-form > *{
            margin: 10px;
        }

        #email-warning{
            display: none;
        }
        #tips{
            padding-top: 6px; ds
            z-index: 9999;
            position: fixed;
            width: 1000px;
        }
        #form-tips{
            background-color: black;
            color: #ffffff;
            padding: 0 6px;
            position: absolute;
        }
        #triangle{
            border:10px solid;
            border-color: transparent black transparent transparent;
        }
    </style>
</head>
<body>
<div id="tips">
    <label id="triangle"></label>
    <label id="form-tips">這是一個(gè)提示</label>
</div>
    <div id="form-block">
        <h1>注冊(cè)</h1>
        <form id="form-form" class="center-block">
            <div>
                <input onfocus="showTips('電子郵箱的提示',this)" id="email" class="form-control" placeholder="電子郵箱">
                <div id="email-warning" class="label-warning">請(qǐng)輸入正確的郵箱地址!</div>
            </div>
            <div>
                <input onfocus="showTips('測(cè)試文字', this)" id="vrf" class="form-control" placeholder="驗(yàn)證碼">
                <div id="vrf-warning" class="label-warning hidden">請(qǐng)輸入正確的郵箱地址!</div>
            </div>
        </form>
    </div>
<!--    <button οnclick="changeFormHeight('500')">測(cè)試</button>-->
<script>
    const TIPS = document.getElementById("tips");
    function showTips(msg, obj) {
        TIPS.style.display = "block";
        var domRect = obj.getBoundingClientRect();
        var width = domRect.x+obj.clientWidth;
        var height = domRect.y;
        TIPS.style.top = height+"px";
        TIPS.style.left = width+"px";
        document.getElementById("form-tips").innerHTML = msg;
        obj.onblur = function () {
            TIPS.style.display = "none";
        };
        window.onresize = function (ev) {
            showTips(msg, obj);
        }
    }
</script>
</body>
</html>

總結(jié)

以上所述是小編給大家介紹的html浮動(dòng)提示框功能的實(shí)現(xiàn)代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

標(biāo)簽:廣安 上海 清遠(yuǎn) 山南 陜西 內(nèi)蒙古 保定 吳忠

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html浮動(dòng)提示框功能的實(shí)現(xiàn)代碼》,本文關(guān)鍵詞  html,浮動(dòng),提示,框,功能,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html浮動(dòng)提示框功能的實(shí)現(xiàn)代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于html浮動(dòng)提示框功能的實(shí)現(xiàn)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章