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

📄 script10.js

📁 图灵程序设计丛书 JavaScript基础教程源代码
💻 JS
字号:
document.onkeydown = keyHit;var thisPic = 0;function keyHit(evt) {	var myPix = new Array("images/callisto.jpg","images/europa.jpg","images/io.jpg","images/ganymede.jpg");	var imgCt = myPix.length-1;	var ltArrow = 37;	var rtArrow = 39;	var thisKey = (evt) ? evt.which : window.event.keyCode;		if (thisKey == ltArrow) {		chgSlide(-1);	}	else if (thisKey == rtArrow) {		chgSlide(1);	}	return false;	function chgSlide(direction) {		thisPic = thisPic + direction;		if (thisPic > imgCt) {			thisPic = 0;		}		if (thisPic < 0) {			thisPic = imgCt;		}		document.getElementById("myPicture").src = myPix[thisPic];	}}

⌨️ 快捷键说明

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