溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Bootstrap彈出框之自定義懸停框標(biāo)題、內(nèi)容和樣式示例代碼

發(fā)布時(shí)間:2020-10-21 01:07:25 來源:腳本之家 閱讀:169 作者:LeapMotion1 欄目:web開發(fā)

1.Bootstrap彈出框示例

<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">點(diǎn)我彈出/隱藏彈出框</button>

Bootstrap彈出框之自定義懸??驑?biāo)題、內(nèi)容和樣式示例代碼

2.改進(jìn)

有時(shí)提示框內(nèi)容較多,僅僅使用data-content,title,在html文檔里寫出來比較亂,我們可以借助提供的popover()方法,實(shí)現(xiàn)對(duì)彈出框內(nèi)容、樣式的修改。

$("#btn-danger").popover({
 html: true,  //實(shí)現(xiàn)對(duì)html可寫
 title: keywords_title(), //標(biāo)題函數(shù)
 content: function() {
  return keywords_content(); //內(nèi)容函數(shù)
 }
});
//標(biāo)題函數(shù) 
function keywords_title() {
 return '結(jié)果說明:';
}
//內(nèi)容函數(shù),同時(shí)對(duì)樣式進(jìn)行修改
function keywords_content() {
 var data = $('<div  ><p><span>提及結(jié)果列關(guān)鍵詞不區(qū)分英文大小寫</span></p></div>');
}
//以下是彈出框樣式,可以根據(jù)需要自定義修改
.popover {
 position: absolute;
 top: 0;
 left: 0;
 z-index: 1060;
 display: none;
 max-width: 276px;
 padding: 1px;
 font-size: 14px;
 font-weight: 400;
 line-height: 1.42857143;
 text-align: left;
 white-space: normal;
 background-color: #fff;
 -webkit-background-clip: padding-box;
 background-clip: padding-box;
 border: 1px solid #ccc;
 border: 1px solid rgba(0,0,0,.2);
 border-radius: 6px;
 -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
 box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

以上所述是小編給大家介紹的Bootstrap彈出框之自定義懸??驑?biāo)題、內(nèi)容和樣式示例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI