mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
30 lines
643 B
HTML
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>
|