JavaScript学习笔记之图片库案例分析

本文实例讲述了JavaScript图片库。分享给大家供大家参考,具体如下:

一、一个javascript 图片库实例,下面是效果图

点击顶部导航,会在本页面进行刷新图片,然后,在底部会显示文本的变化

二、下面是代码

1、gallery.html代码

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<script type="text/javascript" src="js/showPic.js"></script>

<link rel="stylesheet" type="text/css" href="css/layout.css" rel="external nofollow" />

</head>

<body>

<h1>Snapshots</h1>

<ul>

<li>

<a href="img/a.jpg" rel="external nofollow" title="Hongse Fengye" onclick="showPic(this);return false;">红色枫叶</a>

</li>

<li>

<a href="img/b.jpg" rel="external nofollow" title="Huangse Fengye" onclick="showPic(this); return false;">黄色枫叶</a>

</li>

<li>

<a href="img/c.jpg" rel="external nofollow" title="Hongse Shu" onclick="showPic(this); return false;">红色树</a>

</li>

<li>

<a href="img/d.jpg" rel="external nofollow" title="Lanse Fengye" onclick="showPic(this);return false;">蓝色枫叶</a>

</li>

</ul>

<img src="img/3302-106.jpg" id="placeholder" alt="My Gallery"/>

<p id="description">Choose an image</p>

</body>

</html>

2、showPics.js代码

function showPic(whichpic){

var sorce=whichpic.getAttribute("href");

var placeholder=document.getElementById("placeholder");

placeholder.setAttribute("src",sorce);

var text=whichpic.getAttribute("title");

var description=document.getElementById("description");

description.firstChild.nodeValue=text;

}

3、layout.css代码

img{

width: 600px;

}

body{

font-family: helvetica,arial,serif;

color: #333;

background-color: #ccc;

margin: 1em 10%;

}

h1{

color:#333;

background-color: transparent;

}

a{

color: #c60;

background-color: transparent;

font-weight: bold;

text-decoration: none;

}

ul{

padding: 0;

}

li{

float: left;

padding: 1em;

list-style: none;

}

img{

display: block;

clear: both;

}

三、几个新的DOM属性

1、childNodes

获得 body 元素的子节点集合:

document.body.childNodes;

2、nodeType

获得 body 元素的节点类型:

document.body.nodeType;

3、nodeValue

nodeValue 属性设置或返回指定节点的节点值。

4、firstChild、lastChild

firstChild 属性返回指定节点的首个子节点,以 Node 对象。

lastChild 属性返回指定节点的最后一个子节点,以 Node 对象。

更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript操作DOM技巧总结》、《JavaScript页面元素操作技巧总结》、《JavaScript事件相关操作与技巧大全》、《JavaScript查找算法技巧总结》、《JavaScript数据结构与算法技巧总结》、《JavaScript遍历算法与技巧总结》及《JavaScript错误与调试技巧总结》

希望本文所述对大家JavaScript程序设计有所帮助。

以上是 JavaScript学习笔记之图片库案例分析 的全部内容, 来源链接: utcz.com/z/328709.html

回到顶部