-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.1 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
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom animations</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<section class="n-anim black full-height" id="app">
<div class="container">
<div class="n-triangles">
<p class="n-title">Rotating triangles</p>
<div class="n-demo-block">
<div class="n-triangle"
v-bind:class="{ 'active': !!triangle.active}"
v-on:click="setTriangle(triangle);"
v-if="triangles.length > 0"
v-for="triangle in triangles">
<img v-bind:src="triangle.image" alt="Triangle Image">
<div class="n-cut black-shadow">
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="js/n-scripts.js"></script>
</body>
</html>