jeudi 5 mars 2015

Monstre

Hidden Monster

lundi 2 mars 2015

Memo SVG



animation
déplacement d'un objet/image selon un tracé :
<animatemotion  path="xx, xx" dur="20s" repeatcount="indefinite"/>

changer l'opacité d'un objet/image

<style>
#opacite {
opacity: 0;
-webkit-transition: all 1s;
-moz-transition: all 1s;
}
#opacite:hover {
opacity: 1;
-webkit-transition: all 1s;
-moz-transition: all 1s;
}
</style>
<image id="opacite" width="100" height="100" x="50" y="50" xlink:href="http://image.gif"/>

fin