jQuery插件cluetip使用介紹與下載
來源:程序員人生 發(fā)布時(shí)間:2014-01-12 15:47:29 閱讀次數(shù):3590次
有時(shí),要實(shí)現(xiàn)對(duì)于一篇文章的關(guān)鍵詞部分的提示,想實(shí)現(xiàn)的效果比如是,當(dāng)鼠標(biāo)移動(dòng)到這個(gè)關(guān)鍵詞時(shí),彈出相關(guān)的一段文字或圖片的介紹,這個(gè)可以
用jquery的一個(gè)插件cluetip,
地址下載是:http://plugins.learningjquery.com/cluetip/demo/
下面簡(jiǎn)單講解下用法:
1 首先當(dāng)然要放JQUERY的基本JS,和這個(gè)插件的JS了,如:
<a class="title" href="#" title="This is the title|The first set of contents comes after the first delimiter.....
$('a.title').cluetip({splitTitle: '|'});
這樣就會(huì)在該連接被點(diǎn)時(shí),彈出一個(gè)框,標(biāo)題是this is the title,內(nèi)容是|號(hào)后面的內(nèi)容了
2 也可以彈出的內(nèi)容是個(gè)連接,比如
<a class="basic" href="ajax.htm" rel="ajax.htm">
$('a.basic').cluetip();
3 定義彈出框的高度大小等:
<a class="custom-width" href="ajax3.htm" rel="ajax3.htm">
$('a.custom-width').cluetip({width: '200px', showTitle: false});
4 當(dāng)鼠標(biāo)移動(dòng)到某連接時(shí)彈出:
<h4 title="Fancy Title!" id="ajax3.htm">Hover over me</h4>
$('h4').cluetip({attribute: 'id', hoverClass: 'highlight'});
5 當(dāng)用戶主動(dòng)點(diǎn)這個(gè)連接時(shí),才彈出提示
<a href="ajaxclick.htm" rel="ajax5.htm" title="active ingredients">
$('#clickme').cluetip({activation: 'click', width: 650});
6 圓角的
<a href="ajax4.htm" title="|first line body|second line body">
$('ol.rounded a:eq(0)').cluetip({splitTitle: '|', dropShadow: false, cluetipClass: 'rounded', showTitle: false});
生活不易,碼農(nóng)辛苦
如果您覺得本網(wǎng)站對(duì)您的學(xué)習(xí)有所幫助,可以手機(jī)掃描二維碼進(jìn)行捐贈(zèng)