-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
21 lines (18 loc) · 1019 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>3d-cards</title>
</head>
<body style="margin:20px 0;background: #642B73;width:100%;min-height:100vh;justify-content:center;display: grid;margin:0;padding:0;align-content:center;perspective: 1800px;">
<paralax-cards>
<card-element title="Princess Mononoke" background="./assets/3dr_spirited.jpg" img="./assets/3dr_chihiro.png"></card-element>
<card-element title="Spirited Away" background="./assets/3dr_monobg.jpg" img="./assets/3dr_mono.png"></card-element>
<card-element title="Howling castle" background="./assets/3dr_howlbg.jpg" img="./assets/3dr_howlcastle.png"></card-element>
</paralax-cards>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.2.0/webcomponents-lite.js"></script>
<script type="module" src="./cards.js"></script>
</html>