自訂html中a標籤的title提示tooltip

來源:互聯網
上載者:User

自訂html中a標籤的title提示tooltip簡介
用簡單的jquery+CSS建立自訂的a標籤title提示,用來代替瀏覽器預設行為。



Javascript代碼

</pre><pre name="code" class="javascript">$(function() {       $("a[title]").each(function() {        var a = $(this);        var title = a.attr('title');        if (title == undefined || title == "") return;        a.data('title', title)            .removeAttr('title')            .hover(                function () {                    var offset = a.offset();                    $("<div id=\"anchortitlecontainer\"></div>").appendTo($("body")).html(title).css({ top: offset.top + a.outerHeight() + 10, left: offset.left + a.outerWidth() + 1 }).fadeIn(function () {                        var pop = $(this);                        setTimeout(function () { pop.remove(); }, pop.text().length*80);                    });                },                function() { $("#anchortitlecontainer").remove(); }            );    });});

別忘記引用JQuery。
代碼中setTimeout(function () { pop.remove(); }, pop.text().length*80);是根據title長度計算提示時間,用來防止太短的title提示過長或太長的title提示過短。
CSS代碼
#anchortitlecontainer {    position: absolute;    z-index: 5999;    border: solid 1px #315B6C;    padding: 5px;    color: #315B6C;    background: none repeat scroll 0 0 #FFFFFF;    border-radius: 5px;    display: none;}#anchortitlecontainer:before {    position: absolute;    bottom: auto;    left: -1px;    top: -15px;    border-color: transparent transparent transparent #315B6C;    border-style: solid;    border-width: 15px;    content: "";    display: block;    width: 0;}#anchortitlecontainer:after {    position: absolute;    bottom: auto;    left: 0px;    top: -13px;    border-color: transparent transparent transparent #FFFFFF;    border-style: solid;    border-width: 15px;    content: "";    display: block;    width: 0;}


使用一些CSS3的特性,迴避使用圖片。

不是CSS高手,調出這個樣式著實花了一些時間,如果有人能用上,那就是我的榮幸了。:)


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.