Summary
chalow で Amazon の画像置換を利用してみる.amazon.js
function replaceImage(img) {
if (img.width == '1' && img.src.match(/\.01\./)) {
img.src = 'http://images-jp.amazon.com/images/G/09/x-locale/detail/thumb-no-image.gif';
img.width = 98;
img.height = 140;
} else if (img.width == '1') {
img.src = img.src.replace('.09.','.01.');
}
}
cl.conf
- 各 head タグ内に記述<script src="path/to/amazon.js" type="text/javascript"></script>
- amazon リンクの作成プラグインを変更
<img src="/path/to/image" onload="replaceImage(this)" />
Reference
hail2u.net - 2004-05-30 - Amazon の画像置換 #2http://hail2u.net/blog/coding/air_2.html