Files
nebula.js/test/rendering/snaps/snapper.html
Tobias Åström c5a3bceec6 chore: get rid of jimp (#1659)
* chore: change snapper to es6

* chore: jimp 1.6.0

* chore: change snapper back

* chore: ems import of jimp

* chore: ems import of jimp

* chore: get rid of jimp

* chore: add baseline
2024-12-30 16:43:54 +01:00

30 lines
643 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Mashup</title>
<script src="/apis/stardust/dist/stardust.js"></script>
<script src="configured.js"></script>
<style>
body {
background: #eee;
}
.object {
display: inline-block;
position: relative;
width: 300px;
height: 200px;
margin: 16px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="object" data-type="pie"></div>
<div class="object" data-type="bar"></div>
<script src="snapper.js"></script>
</body>
</html>