1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body { text-align: center; }
.sortir {
transition: 0.3s;
transform: translate(16px,0px);
}
.rentrer {
transition: 2s;
}
</style>
<script>
sortir=function() {
document.getElementById('bille').setAttribute('class','sortir');
};
rentrer=function() {
document.getElementById('bille').setAttribute('class','rentrer');
};
</script>
</head>
<body>
<svg width="400px" height="auto" viewBox="0 0 25 6">
<rect x="0" y="0" width="8" height="6" fill="#926"/>
<rect x="1" y="1" width="7" height="4" fill="#eee"/>
<circle cx="3" cy="3" r="2" fill="#269" id="bille"/>
</svg>
<br><br>
<button type="button" onclick="sortir();">Tirer</button>
<button type="button" onclick="rentrer();">Recharger</button>
</body>
</html> |
Partager