-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (83 loc) · 2.5 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>Dota2 heroes cards</title>
<link href="./src/styles.css" rel="stylesheet"></link>
<meta charset="UTF-8" />
</head>
<body>
<h1 class="heading">
Welcome to Dota2 heroes cards
<a
class="github-icon" href='https://github.com/iversonLv/dota_hero_card_new' target="_blank">
<img src='./images/github-mark.svg' alt='github' />
</a>
</h1>
<!-- Part card -->
<div class="hero-card">
<!-- back -->
<div class="hero-card-back">
<img src="./images/Dota2Logo.svg" alt="" />
</div>
<!-- front -->
<div class="hero-card-front">
<!-- <div class="hero-primary_attr"></div> -->
<!-- decorate the card looked good -->
<span class="hero-bg"></span>
<div class="hero-decoration-container">
<div class="hero-decoration"></div>
</div>
<div class="card-main">
<!-- hero abilities -->
<div class="hero-abilities-talent">
<!-- hero talent icon -->
<img src="./images/talent_tree.svg" alt="talent tree" class="hero-talent">
<div class="hero-abilities-list"></div>
</div>
<div class="card-main-right">
<!-- hero image/video -->
<video src="./images/Dota2Logo.svg" class="hero-video" autoplay="" preload="auto" loop="" playsinline=""></video>
<!-- hero base -->
<div class="hero-base"></div>
<!-- hero mp hp -->
<div class="hero-mp-hp"></div>
<!-- hero name -->
<h1 class="hero-name"></h1>
<!-- hero roles -->
<div class="hero-roles"></div>
<!-- hero info -->
<div class="hero-info">
<div class="hero-attack">
<h2>ATTACK</h2>
</div>
<div class="hero-defense">
<h2>DEFENSE</h2>
</div>
<div class="hero-mobility">
<h2>MOBILITY</h2>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- hero complexity filter bar -->
<div class="hero-filter-bar">
<div class="hero-filter hero-filter-complexity">
<label for="">COMPLEXITY:</label>
<span class="complexity" data-complexity-value="1" data-selected="false"></span>
<span class="complexity" data-complexity-value="2" data-selected="false"></span>
<span class="complexity" data-complexity-value="3" data-selected="false"></span>
</div>
</div>
<!-- heroes lists -->
<div class="hero-list"></div>
<div class="tooltip talent-tooltip">
</div>
<div class="tooltip ability-tooltip"></div>
<div class="tooltip-alt scepter-shard-tooltip"></div>
<script type="module" src="src/index.js">
</script>
<script type="module" src="src/index_card.js"></script>
</body>
</html>