mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
200 lines
5.1 KiB
HTML
200 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container"></div>
|
|
<script src="http://www.html5canvastutorials.com/lib/stats/stats.js"></script>
|
|
<script type="module">
|
|
import Konva from '../src/index.ts';
|
|
Konva.isUnminified = false;
|
|
// Konva.autoDrawEnabled = trye;
|
|
var lastTime = 0;
|
|
|
|
var width = window.innerWidth;
|
|
var height = window.innerHeight;
|
|
|
|
var wabbitTexture;
|
|
|
|
var bunnys = [];
|
|
var gravity = 0.75;
|
|
|
|
var maxX = width - 10;
|
|
var minX = 0;
|
|
var maxY = height - 10;
|
|
var minY = 0;
|
|
|
|
var startBunnyCount = 4000;
|
|
var isAdding = false;
|
|
var count = 0;
|
|
var container;
|
|
var layer;
|
|
var stats;
|
|
var amount = 10;
|
|
var counter;
|
|
|
|
Konva.pixelRatio = 1;
|
|
|
|
var stage = new Konva.Stage({
|
|
container: 'container',
|
|
width: width - 10,
|
|
height: height - 10,
|
|
});
|
|
layer = new Konva.Layer({ listening: false });
|
|
stage.add(layer);
|
|
stats = new Stats();
|
|
|
|
wabbitTexture = new Image();
|
|
wabbitTexture.onload = function () {
|
|
_handleTextureLoaded();
|
|
};
|
|
wabbitTexture.src = 'https://konvajs.org/assets/bunny.png';
|
|
|
|
document.body.appendChild(stats.domElement);
|
|
stats.domElement.style.position = 'absolute';
|
|
stats.domElement.style.top = '0px';
|
|
|
|
window.requestAnimationFrame(update);
|
|
|
|
counter = document.createElement('div');
|
|
counter.className = 'counter';
|
|
counter.style.position = 'absolute';
|
|
counter.style.top = '50px';
|
|
|
|
document.body.appendChild(counter);
|
|
|
|
count = startBunnyCount;
|
|
counter.innerHTML = startBunnyCount + ' BUNNIES';
|
|
|
|
container = stage;
|
|
// stage.addChild(container);
|
|
|
|
stage.on('mousedown', function () {
|
|
isAdding = true;
|
|
});
|
|
|
|
stage.on('mouseup', function () {
|
|
isAdding = false;
|
|
});
|
|
|
|
document.addEventListener('touchstart', onTouchStart, true);
|
|
document.addEventListener('touchend', onTouchEnd, true);
|
|
|
|
function _handleTextureLoaded(event) {
|
|
for (var i = 0; i < startBunnyCount; i++) {
|
|
var bunny = new Konva.Image({
|
|
image: wabbitTexture,
|
|
transformsEnabled: 'position',
|
|
x: 10,
|
|
y: 10,
|
|
perfectDrawEnabled: false,
|
|
width: wabbitTexture.width,
|
|
height: wabbitTexture.height,
|
|
});
|
|
|
|
bunny.speedX = Math.random() * 10;
|
|
bunny.speedY = Math.random() * 10 - 5;
|
|
|
|
bunnys.push(bunny);
|
|
layer.add(bunny);
|
|
}
|
|
// layer.draw();
|
|
// console.clear();
|
|
// bunnys.forEach((b) => {
|
|
// b.position({
|
|
// x: Math.random() * window.innerWidth,
|
|
// y: Math.random() * window.innerHeight,
|
|
// });
|
|
// });
|
|
// layer.draw();
|
|
// bunnys.forEach((b) => {
|
|
// b.position({
|
|
// x: Math.random() * window.innerWidth,
|
|
// y: Math.random() * window.innerHeight,
|
|
// });
|
|
// });
|
|
// layer.draw();
|
|
}
|
|
|
|
function onTouchStart(event) {
|
|
isAdding = true;
|
|
}
|
|
|
|
function onTouchEnd(event) {
|
|
isAdding = false;
|
|
}
|
|
|
|
function update() {
|
|
stats.begin();
|
|
if (isAdding) {
|
|
// add 10 at a time :)
|
|
|
|
for (var i = 0; i < amount; i++) {
|
|
var bunny = new Konva.Image({
|
|
image: wabbitTexture,
|
|
transformsEnabled: 'position',
|
|
x: 0,
|
|
y: 0,
|
|
perfectDrawEnabled: false,
|
|
width: wabbitTexture.width,
|
|
height: wabbitTexture.height,
|
|
});
|
|
bunny.speedX = Math.random() * 10;
|
|
bunny.speedY = Math.random() * 10 - 5;
|
|
bunnys.push(bunny);
|
|
layer.add(bunny);
|
|
|
|
count++;
|
|
}
|
|
counter.innerHTML = count + ' BUNNIES';
|
|
}
|
|
|
|
for (var i = 0; i < bunnys.length; i++) {
|
|
var bunny = bunnys[i];
|
|
var pos = {
|
|
x: bunny.x(),
|
|
y: bunny.y(),
|
|
};
|
|
pos.x = pos.x + bunny.speedX;
|
|
pos.y = pos.y + bunny.speedY;
|
|
bunny.speedY += gravity;
|
|
if (pos.x > maxX - wabbitTexture.width) {
|
|
bunny.speedX *= -1;
|
|
pos.x = maxX - wabbitTexture.width;
|
|
} else if (pos.x < minX) {
|
|
bunny.speedX *= -1;
|
|
pos.x = minX;
|
|
}
|
|
|
|
if (pos.y > maxY - wabbitTexture.height) {
|
|
bunny.speedY *= -0.85;
|
|
pos.y = maxY - wabbitTexture.height;
|
|
if (Math.random() > 0.5) {
|
|
bunny.speedY -= Math.random() * 6;
|
|
}
|
|
} else if (pos.y < minY) {
|
|
bunny.speedY = 0;
|
|
pos.y = minY;
|
|
}
|
|
bunny.position({
|
|
x: pos.x,
|
|
y: pos.y,
|
|
});
|
|
}
|
|
if (!Konva.autoDrawEnabled) {
|
|
layer.draw();
|
|
}
|
|
|
|
requestAnimationFrame(update);
|
|
stats.end();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|