34 lines
No EOL
606 B
HTML
34 lines
No EOL
606 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://js.cx/libs/animate.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div id="path">
|
|
<div id="brick"></div>
|
|
</div>
|
|
|
|
<script>
|
|
brick.onclick = function() {
|
|
animate({
|
|
duration: 1000,
|
|
timing: function back(x, timeFraction) {
|
|
return Math.pow(timeFraction, 2) * ((x + 1) * timeFraction - x)
|
|
}.bind(null, 1.5),
|
|
draw: function(progress) {
|
|
brick.style.left = progress * 500 + 'px';
|
|
}
|
|
});
|
|
};
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |