天天看點

html

<!doctype html>

<html lang="en">

 <head>

<script>

function setopacity (o, n) {

 if (typeof (n) == "string") {

 n = eval(n);

 }

 if (o.style.opacity != null) {

 o.style.opacity = n <= 1 ? n : n / 100.0;

 else if (o.style.mozopacity != null) {

 o.style.mozopacity = n <= 1 ? n : n / 100.0;

 else {

 o.style.filter = "alpha(opacity=" + (n <= 1 ? n * 100.0 : n) + ")";

  </script>

  <meta charset="utf-8">

  <meta name="generator" content="editplus">

  <meta name="author" content="">

  <meta name="keywords" content="">

  <meta name="description" content="">

  <title>document</title>

 </head>

 <body>

<img src="e:\photos\曼詩\0.jpg" onmouseover="setopacity(this,90)" onmouseout="setopacity(this,100)">

 </body>

</html>

js