Add a special effect to a hyperlink. Move the mouse to display the prompt and move the cursor with the mouse. _ javascript tips

Source: Internet
Author: User
To achieve this effect, you need to add special effects to the hyperlink. When you move the mouse over the hyperlink, the prompt information is displayed and the prompt information follows the mouse. After testing, it is good. If you are interested, refer The Code is as follows:





New Document

Script
Var c $ = {};
Var w $ = function (s) {document. write (s );}
Var o $ = function (id) {return document. getElementById (id );}
W $ ("

");

C $. mmove = function (o, s ){
// Alert (typeof (s ));
Var evt = event | window. event;
Var x = evt. clientX + 5;
Var y = evt. clientY + 20;
O $ ("ts"). style. left = x + "px ";
O $ ("ts"). style. top = y + "px ";
If (s = "" | typeof (s) = "undefined "){
O $ ("ts"). innerHTML = o. innerHTML;
} Else {
O $ ("ts"). innerHTML = s
}
O $ ("ts"). style. display = "";
}
C $. mout = function (){
O $ ("ts"). style. display = "none ";
}
Script


Analysis


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.