[問題][外掛]img標籤自動縮圖+點擊放大
發表於 : 2004-04-29 21:35
參考連結: http://phpbb-tw.net/phpbb/viewtopic.php?t=25216
按左鍵只會放大,但如原圖很大的話,右鍵又沒功用了,不能觀看原圖
能否為它加上按右鍵觀看原圖的功能呢?
按左鍵只會放大,但如原圖很大的話,右鍵又沒功用了,不能觀看原圖
能否為它加上按右鍵觀看原圖的功能呢?
這是什麼東西呀webspirit 寫:這個不錯用 ^^
http://www.phpbb.com/phpBB/viewtopic.php?t=243046
MOD Database Manager 寫:This is mainly a client-side (Javascript) MOD. Images resized are made clickable and openable in a popup in full-size. You can specify a different max width for each of your themes. Images that do not exceed the max width are left as is.
請問一下大大~~totoromehk 寫:參考連結: http://phpbb-tw.net/phpbb/viewtopic.php?t=25216
按左鍵只會放大,但如原圖很大的話,右鍵又沒功用了,不能觀看原圖
能否為它加上按右鍵觀看原圖的功能呢?
代碼: 選擇全部
<!-- BEGIN img --><img src="{URL}" onload="[color=red]ww=this.width ;[/color] javascript:if(this.width >= screen.width * 0.2) this.width = 200" onclick="javascript:if(this.width == 200) {this.width = [color=red]ww[/color]} else {if(this.width >= screen.width * 0.19) {this.width = 200}};" border="0" alt="圖片:點擊縮放" title="圖片:點擊縮放" /><!-- END img -->
我發現這樣是不行的~~HUG0 寫:我搞定囉~~:)我加了紅色的部份就好了~~代碼: 選擇全部
<!-- BEGIN img --><img src="{URL}" onload="[color=red]ww=this.width ;[/color] javascript:if(this.width >= screen.width * 0.2) this.width = 200" onclick="javascript:if(this.width == 200) {this.width = [color=red]ww[/color]} else {if(this.width >= screen.width * 0.19) {this.width = 200}};" border="0" alt="圖片:點擊縮放" title="圖片:點擊縮放" /><!-- END img -->
分享一下~~
我是縮的比較小啦~~