JavaScriptは写真のロードショーとマウスのペンダント表示を実現します.

7010 ワード

例:
前に4枚の写真を置いて、番号を付けました.

<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> loaction title>
  <meta charset="utf-8" />
  <meta name="generator" content="editplus" />
  <meta name="author" content="" />
  <meta name="keywords" content="" />
  <meta name="description" content="" />
  <style type="text/css">
    .one{
        color:red;
        border:1px solid blue;
        cursor:hand;
    }
    label{
        margin-left:80px;
    }
  style>
 head>
<script type="text/javascript">

script>
 <body onload = "func()" >
    <center>
    <img src="images/1.jpg" width="1000" height="600" alt="" id = "i" />

    <div>
    <h1>
        <label onmouseover = "func1(1)">1label>
        <label onmouseover = "func1(2)">2label>
        <label onmouseover = "func1(3)">3label>
        <label onmouseover = "func1(4)">4label>
    h1>
    div>
    center>
 body>
html>
以上の内容は個人学習の記録として、参考にしてください.