Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Code:
/* Normales Bild */
/* Verblasstes Bild */
Code:
/* Als erstes wird das Bild mit verblasstem Effekt dargestellt und beim MouseOver wird das Bild normal dargestellt */
<style type="text/css">
#bild1 {background-image:url(pfad/bild.jpeg);
width:100px; height:53px;}
#bild1:hover {background-image:url(pfad/hoverbild.jpeg);}
</style>
<div id="bild1"></div>
<script src="jsfx_imagefader.js" type="text/javascript"></script>
<img src="1.jpg" class="imageFader" onMouseOver="JSFX.fadeUp(this)"