マウスの位置に基づいて要素 (この例では .png) の不透明度を変更しようとしています。
色のこの素晴らしい例を見つけました: http://jsfiddle.net/WV8jX/
var $win = $(window),
w = 0,h = 0,
rgb = [],
getWidth = function() {
w = $win.width();
h = $win.height();
};
$win.resize(getWidth).mousemove(function(e) {
rgb = [
Math.round(e.pageX/w * 255),
Math.round(e.pageY/h * 255),
150
];
$(document.body).css('background','rgb('+rgb.join(',')+')'); }).resize();
しかし、不透明度でどうやってそれを行うのか混乱しています。同じスムーズでシームレスな効果が必要です。
すべての助けをいただければ幸いです。