Jump to content
php.lv forumi

Background krāsas maiņas tween


xfr33

Recommended Posts

Labdien!

Jautājums. Ir funkcija, kas maina fona krāsu ar tweenu...teorētiski, bet praktiski tā nestrādā. Varētu kāds pateikt, kas par lietu?

 

 

funkcija

<script type="text/javascript">
function colorTween(){
sidebarTween = new ColorTween(document.getElementById('sidebar1').style, 'backgroundColor', Tween.bounceEaseOut, '#E8E8E8', '#999C99', 3);
sidebarTween.start()
}
</script>

 

un divs

<div id="sidebar1" onmouseover="colorTween()">Informācija</div>

Link to comment
Share on other sites

Labdien!

Jautājums. Ir funkcija, kas maina fona krāsu ar tweenu...teorētiski, bet praktiski tā nestrādā. Varētu kāds pateikt, kas par lietu?

 

 

funkcija

<script type="text/javascript">
function colorTween(){
sidebarTween = new ColorTween(document.getElementById('sidebar1').style, 'backgroundColor', Tween.bounceEaseOut, '#E8E8E8', '#999C99', 3);
sidebarTween.start()
}
</script>

 

un divs

<div id="sidebar1" onmouseover="colorTween()">Informācija</div>

 

Javascript ColorTween(object,property,easing,startColor,endColor,duration);

 

a tev pati ColorTween.js vispaar ir ?

Link to comment
Share on other sites

×
×
  • Create New...