返信する: OpnePNE3
- プロフィール画像を縮小したい
- 投稿者: kondo 投稿日時: 2014/1/18 11:03
管理画面の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の数字は、ブラウザーソースで確認して下さい。