A small example of moving the mouse over the CSS style

Source: Internet
Author: User

An area on a Web page, when the mouse moved to change the style, the mouse out of the automatic recovery style, can be a picture of the border, can also be a paragraph of text color, master the principle, seemingly can do more rich and vivid interactive effect of the Web page, here is the use of JS control hover tag in the DIV generated action, is also a good example of learning.
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <ptml xmlns=" http://www.w3.org/1999/xhtml "> <pead> <meta http-equiv=" Content-type "content=" text/html; Charset=utf-8 "/> <title> mouse move out change CSS style </title> <style> body{color: #fff; font:12px/1.5 Tahoma;} div1{width:150px;height:150px;margin:0 auto;padding:10px;background:black;border:10px solid #000; cursor:crosshair ;} #div1. Hover{color:red;background: #f0f0f0; border:10px solid red;} </style> <script> window.onload = function () {var odiv = document.getElementById ("Div1"); Odiv.onmouseover = function () {odiv.classname = "hover"}; Odiv.onmouseout = function () {odiv.classname = ' "}}; </script> </pead> <body> <div id= "Div1" > Mouse moveChange the style and move the mouse out of the recovery. </div> </body> </ptml>

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.