欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery插件 cluetip 關(guān)鍵詞注釋

 更新時間:2010年01月12日 00:42:14   作者:  
有時,要實現(xiàn)對于一篇文章的關(guān)鍵詞部分的提示,想實現(xiàn)的效果比如是,當鼠標移動到這個關(guān)鍵詞時,彈出相關(guān)的一段文字或圖片的介紹。
這個可以用jquery的一個插件cluetip

地址下載是:plugins.learningjquery.com/cluetip/demo/

下面簡單講解下用法:

1 首先當然要放JQUERY的基本JS,和這個插件的JS了,如:

<a class="title" href="#" title="This is the title|The first set of contents comes after the first delimiter.....

$('a.title').cluetip({splitTitle: '|'});

這樣就會在該連接被點時,彈出一個框,標題是this is the title,內(nèi)容是|號后面的內(nèi)容了

2 也可以彈出的內(nèi)容是個連接,比如
<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 當鼠標移動到某連接時彈出:

<h4 title="Fancy Title!" id="ajax3.htm">Hover over me</h4>

$('h4').cluetip({attribute: 'id', hoverClass: 'highlight'});



5 當用戶主動點這個連接時,才彈出提示
<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});

相關(guān)文章

最新評論