網頁裡控制圖片大小的相關代碼284278問題及解決
1、用鼠標拖動來改變大小
<SCRIPT LANGUAGE=”JavaScript”>
function resizeImage(evt,obj){
newX=evt.x
newY=evt.y
obj.width=newX
obj.height=newY
}
</script>
<img src=”7say.gif” ondrag=”resizeImage(event,this)”>
function resizeImage(evt,obj){
newX=evt.x
newY=evt.y
obj.width=newX
obj.height=newY
}
</script>
<img src=”7say.gif” ondrag=”resizeImage(event,this)”>
2、用鼠標滾動控制圖片大小
<img src=”7say.gif” onmouseenter=”focus();” onmouseout=”blur();” onmousewheel=”width+=(window.event.wheelDelta==120)?-5:+5;”>
3、圖片標簽裡用代碼控制大小
<img border=”0″ src=”[!–picurl–]” onload=”if(this.width>screen.width-500)this.style.width=screen.width-500;”>
經測試這裡需要修改一下,不然刷新網頁時圖片會顯示原始大小。<img border=”0″ src=”[!–picurl–]” onload=”if(this.width>screen.width-500)this.resized=true;this.style.width=screen.width-500;”>
4、CSS控制圖片大小
1. css2直接實現: img{max-width: 500px;} (IE暫不支持)
2. expression實現: img{width:expression(width>500?”500px”:width);} (IE only)
3. 使用js. 方法: 用 document.getElementsByTagName(“IMG”) 的方法取得全部img元素 遍歷img元素 判斷其寬度並做相應操作
推薦閱讀:
- JS與Jquery獲取屏幕、瀏覽器、頁面的寬度和高度對比整理
- JavaScript之BOM構成和常用事件詳解
- 基於jquery實現滾輪放大縮小圖片的函數代碼
- Vue大屏數據展示示例
- Vue實現大屏頁面的屏幕自適應