JS+CSS滑鼠經過文字變色

來源:互聯網
上載者:User

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
   <title>active</title>
   <style type="text/css" media="all">
   body {
    font: 85%/140% arial, helvetica, sans-serif;
   }
   ul{
    padding: 0;
   margin: 10px;
   list-style: none;
   }
  li{
   color: #333;
   background: #DDD;
   padding: 10px;
  margin-bottom: 2px;
 }
 li:hover, li.sfhover {
  color: red;
  background: #F5F5F5; 
 }
</style>
<script type="text/javascript"><!--//--><![CDATA[//><!--
function suckerfish(type, tag, parentId) {
 if (window.attachEvent) {
  window.attachEvent("onload", function() {
   var sfEls = (parentId==null)?document.getElementsByTagName(tag):document.getElementById(parentId).getElementsByTagName(tag);
   type(sfEls);
  });
 }
}
sfHover = function(sfEls) {
 for (var i=0; i<sfEls.length; i++) {
  sfEls[i].onmouseover=function() {
   this.className+=" sfhover";
  }
  sfEls[i].onmouseout=function() {
   this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
  }
 }
}
sfActive = function(sfEls) {
 for (var i=0; i<sfEls.length; i++) {
  sfEls[i].onmousedown=function() {
   this.className+=" sfactive";
  }
  sfEls[i].onmouseup=function() {
   this.className=this.className.replace(new RegExp(" sfactive\\b"), "");
  }
 }
}
suckerfish(sfHover, "li");

//--><!]]></script>
</head>
<body>
<ul>
<li>很多年來,每發行一個新版本,瀏覽器製作者們都擴充了對 CSS 的支援。今天,Internet Explorer 6、Netscape Navigator
7、Mozilla、Opera 和 Safari 都全面支援 CSS。但這並不意味著我們作為 Web 設計者和開發人員的生涯不存在問題。儘管上述所有瀏覽器都支援
CSS Level </li>
<li>很多年來,每發行一個新版本,瀏覽器製作者們都擴充了對 CSS 的支援。今天,Internet Explorer 6、Netscape Navigator
7、Mozilla、Opera 和 Safari 都全面支援 CSS。但這並不意味著我們作為 Web 設計者和開發人員的生涯不存在問題。儘管上述所有瀏覽器都支援
CSS Level </li>
<li>很多年來,每發行一個新版本,瀏覽器製作者們都擴充了對 CSS 的支援。今天,Internet Explorer 6、Netscape Navigator
7、Mozilla、Opera 和 Safari 都全面支援 CSS。但這並不意味著我們作為 Web 設計者和開發人員的生涯不存在問題。儘管上述所有瀏覽器都支援
CSS Level </li>
<li>很多年來,每發行一個新版本,瀏覽器製作者們都擴充了對 CSS 的支援。今天,Internet Explorer 6、Netscape Navigator
7、Mozilla、Opera 和 Safari 都全面支援 CSS。但這並不意味著我們作為 Web 設計者和開發人員的生涯不存在問題。儘管上述所有瀏覽器都支援
CSS Level </li>
</ul>

相關文章

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.