-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.37 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tuner</title>
<meta name="description" content="Tuner">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<link rel="stylesheet" href="./index.css">
<!-- Uncomment for development -->
<!-- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> -->
<!-- Uncomment for production -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<body>
<main id="app" v-on:click="start">
<div v-bind:style="{ position: 'relative', width: '50vmin', height: '50vmin', }">
<div v-bind:style="{ position: 'absolute', width: '100%', height: '100%', background: 'red', borderRadius: '100%' }"></div>
<div v-bind:style="{ position: 'absolute', background: 'blue', width: '100%', height: '100%', borderRadius: '100%', transform: scale, opacity: '0.5', transition: 'all 1s' }"></div>
<div v-bind:style="{ position: 'absolute', width: '100%', height: '100%', display: 'flex', justifyContent: 'center', alignItems: 'center' }">
<p class="note">{{ ui.note }}</p>
</div>
</div>
</main>
<script type="module" src="./app.js"></script>
<!-- <script type="module" src="./dist/app.js"></script> -->
</body>
</html>