Суть состоит в замене background-картинки div'a при хождении мышкой по ссылкам. Если вызывать ф-цию по событию клика, то все работает.
А вот с hover'ом - не желает. Куда копать?
Заранее благодарю.
//change the opacity for different browsers
function changeOpac(opacity, id) {
var object = document.getElementById(id).style;
object.opacity = (opacity / 100);
object.MozOpacity = (opacity / 100);
object.KhtmlOpacity = (opacity / 100);
object.filter = "alpha(opacity=" + opacity + ")";
}
// fading
function blendimage(divid, imageid, imagefile, millisec) {
var speed = Math.round(millisec / 100);
var timer = 0;
//set the current image as background
document.getElementById(divid).style.backgroundImage = "url(" + document.getElementById(imageid).src + ")";
//make image transparent
changeOpac(0, imageid);
//make new image
document.getElementById(imageid).src = imagefile;
//fade in image
for(i = 0; i <= 100; i++) {
setTimeout("changeOpac(" + i + ",'" + imageid + "')",(timer * speed));
timer++;
}
}
<div style="background-image: url(product-selector/0.jpg); background-repeat: no-repeat; width: 720px; height: 200px;" id="blenddiv">
<img src="product-selector/0.jpg" style="width: 720px; height: 200px; border: 0 none; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; opacity: 0;" id="blendimage" alt="" />
</div>
<a href="#" onMouseOver = "blendimage('blenddiv','blendimage','product-selector/8.jpg',100);" >НЕ_Работает</a>
<a href="javascript:blendimage('blenddiv','blendimage','product-selector/8.jpg',100);" >Работает</a>