⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 script.js

📁 lynda.com 2007年出品的javascript essential training教学视频(Dori Smith主讲)的配套源码。
💻 JS
字号:
window.onload = initLinks;var myPix = new Array("images/pathfinder.gif","images/surveyor.gif","images/surveyor98.gif");var thisPic = 0;function initLinks() {	document.getElementById("prevLink").onclick = processPrevious;	document.getElementById("nextLink").onclick = processNext;}function processPrevious() {	if (thisPic == 0) {		thisPic = myPix.length;	}	thisPic--;	document.getElementById("myPicture").src = myPix[thisPic];	return false;}function processNext() {	thisPic++;	if (thisPic == myPix.length) {		thisPic = 0;	}	document.getElementById("myPicture").src = myPix[thisPic];	return false;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -