|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
請教如何才能實現這種效果?
請問加什麼代碼才能實現以下效果?http://www.gfcai.com/dispbbs.asp?boardid=53&id=29988
1、圖片能隨鼠標滑輪隨意變大或變小。
2、圖片的背景框。 |
先在body區放入<script language="java-script">
MM_showHideLayers('Layer0','','show','Layer1','','hide')
</script>
<script language='java-script'> function jumpto(url) { if (url != '') { window.open(url,target='_self'); } } </script>
<script language="java-script">
function bb_img_onmousewheel(o){
var zoom = parseInt(o.style.zoom, 10) || 100;
zoom += event.wheelDelta / 12;
if (zoom > 0) o.style.zoom = zoom + '%';
return false;
}
</script>
然後在圖片處加上下面代碼:
<A HREF="***.HTM" TARGET="_BLANK"><IMG SRC="***.jpg" onmousewheel="return bb_img_onmousewheel(this)" onload="java-script:if(this.width>screen.width-500)this.width=screen.width-500" width="300"&! nbsp;height="390">
|
|