📄 h3.4.html
字号:
<html><head><title>Theo c么ng vi峄嘽</title><style type="text/css">@import url(/style/base.css);</style><style type="text/css">@import url(/style/standardwhite/content.css);</style><style type="text/css">@import url(base.css);</style><style type="text/css">@import url(content.css);</style><script> imgObj = new Image(); imgObj.src = "H3.4.bmp"; multiplier = 1; imageExpanded = false; imageCanExpand = false; maxWidth = 320.0; maxHeight = 240.0;// Returns the multiplier to shink the Imagefunction getShrinkMod() { if (imgObj.width > imgObj.height) { if (imgObj.width > maxWidth) { imageCanExpand = true; return maxWidth / imgObj.width; } else { return 1; } } else { if (imgObj.height > maxHeight) { imageCanExpand = true; return maxHeight / imgObj.height; } else { return 1; } }}// Resize the imagefunction onLoad() { var imgEle = document.getElementById("the_image"); multiplier = getShrinkMod(); if (imageCanExpand) { // Shrink the Image imgEle.width = imgObj.width * multiplier; imgEle.height = imgObj.height * multiplier; }}function growImage() { var imgEle = document.getElementById("the_image"); if (imageCanExpand) { if (imageExpanded) { // Shrink Image imgEle.width = imgObj.width * multiplier; imgEle.height = imgObj.height * multiplier; } else { // Grow Image imgEle.width = imgObj.width; imgEle.height = imgObj.height; } imageExpanded = !imageExpanded; }}</script></head><body onLoad="onLoad()"><h1 id="nodeTitle">Theo c么ng vi峄嘽</h1><p align="center"><table width="100%"><tr><td colspan="3" align="center" width="100%"><a href="javascript:growImage()"><img width="320.0" height="240.0" id="the_image" src="H3.4.bmp" /></a></td></tr><tr><td width="33%" align="right"><a href="H3.3.html">Previous</a></td><td width="33%" align="center"><a href="javascript:window.close()">Close</a></td><td width="33%" align="left"> </td></tr></table></p></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -