プロフィール画像を縮小したい
投稿ツリー
- プロフィール画像を縮小したい (kondo, 2014/1/18 11:03)
- depth:
- 0
前の投稿
-
次の投稿
|
親投稿
-
子投稿なし
|
投稿日時 2014/1/18 11:03
kondo
投稿数: 104
管理画面のhtmlに下記を記入します。
<script type="text/javascript"> jQuery(function(){ $('#memberImageBox_14 img').each(function(){ var max = 130; var w = $(this).width(); var h = $(this).height(); if (w > max) { $(this).width(max).height(Math.round((max/w)*h)); } }); }); </script>
memberImageBox_14の数字は、ブラウザーソースで確認して下さい。
投票数:0
平均点:0.00
返信する