-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.48 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.48 KB
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
<!DOCTYPE HTML>
<html lang="fr-FR">
<head>
<meta charset="UTF-8" />
<title>Vanilla Panels</title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="css/base.css?v=0.2.0" />
<link rel="stylesheet" type="text/css" href="css/vanilla-panels.css?v=0.2.0" />
<script src="js/vanilla-panels.js?v=0.2.0"></script>
</head>
<body>
<h1>Vanilla Panels</h1>
<h2>Full HTML panel</h2>
<button data-panel-trigger="html-panel" type="button">Open HTML Panel</button>
<div class="panel-wrapper" data-panel="html-panel" aria-hidden="true" data-panel-open="false">
<div class="panel-overlay"></div>
<div class="panel-content">
<a class="panel-content__close" href="#"><span>Close Panel</span></a>
<div class="panel-content__inner">
<h2>HTML Panel</h2>
<p>Design is a funny word. Some people think design means how it looks. But of course, if you dig deeper, it's really how it works.</p>
</div>
<div class="panel-content__action">
action
</div>
</div>
</div>
<h2>Built Panel</h2>
<button data-panel-trigger="built-panel" type="button">Open Built Panel</button>
<div data-build-panel="built-panel">
<div class="panel-content__inner">
<h2>Built Panel</h2>
<p>Design is a funny word. Some people think design means how it looks. But of course, if you dig deeper, it's really how it works.</p>
</div>
<div class="panel-content__action">action</div>
</div>
</body>
</html>