标题phpArticle图片缩放mod
日期:2008-01-22    作者:超弦   来源:city521.com
文章打印自: PHP学习之家
访问文章完全地址: http://www.444p.com/mod/phparticle/aid2563/
头部广告
phpArticle图片缩放mod

一.在headinclude中添加javascript代码

<script language=javascript>
function paimg(o){
 var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
 return false;}
</script>

 当然你也可以把他放到js文件中,再导入。

二.打开html模式,找到你所添加的图片代码<img src=...>。例如

修改前:

找到原来的图片代码

<IMG alt="这幅图没有缩放效果" hspace=0
src="http://www.city521.com/201/style/in_img.jpg" align=baseline border=0>

看看对比一下代码,知道了其中奥秘了吗,当然其中的参数可以根据自己的需要修改。

<IMG onmousewheel="return paimg(this)" style="CURSOR: pointer" onclick=javascript:window.open(this.src);
onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;" hspace=0
src="http://www.city521.com/201/style/in_img.jpg" align=baseline border=0>

 

责任编辑:semirock