Home > Web Front-end > JS Tutorial > body text

jquery plug-in cluetip keyword annotation_jquery

WBOY
Release: 2016-05-16 18:36:41
Original
987 people have browsed it

This can be done using a jquery plug-in cluetip

The download address is: plugins.learningjquery.com/cluetip/demo/

The following is a brief explanation of the usage:

1 First of all, of course Put the basic JS of JQUERY and the JS of this plug-in, such as:



$('a. basic').cluetip();

3 Define the height of the pop-up box, etc.:



$('a.custom-width').cluetip ({width: '200px', showTitle: false});



4 Pops up when the mouse moves to a connection:

Hover over me



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



5 When the user actively clicks this link

$('#clickme').cluetip({activation: 'click', width: 650});

6 Rounded corners


$('ol.rounded a:eq(0)').cluetip({splitTitle: '|', dropShadow: false, cluetipClass: 'rounded', showTitle: false});

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!