MySQL interesse |
|
er werkt iets niet maar vind het niet...
de setTimeout werkt want als ik de inhoud verander door een alert doet hij het wel
var opacity_old;
function fade_price()
{
opacity_old = document.getElementById('price').style.opacity;
document.getElementById('price').style.opacity = (opacity_old+0.01);
setTimeout("fade_price()",50);
}
var opacity_old; function fade_price() { opacity_old = document.getElementById('price').style.opacity; document.getElementById('price').style.opacity = (opacity_old+0.01); setTimeout("fade_price()",50); }
<img src="images/prijs.png" style="opacity:0;margin-top:100px;" id="price">
<img src="images/prijs.png" style="opacity:0;margin-top:100px;" id="price">
|