-
Notifications
You must be signed in to change notification settings - Fork 1
/
avatar.html
97 lines (85 loc) · 3.52 KB
/
avatar.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
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>avatar</title>
<script type="module" src="https://js.arcgis.com/calcite-components/1.0.0-beta.91/calcite.esm.js"></script>
<link rel="stylesheet" type="text/css" href="https://js.arcgis.com/calcite-components/1.0.0-beta.91/calcite.css" />
<style>
h1 {
margin-bottom: 5rem;
}
h2,
calcite-avatar,
calcite-chip {
margin-bottom: 3rem;
}
body {
font-family: var(--calcite-sans-family);
font-size: var(--calcite-font-size-0);
color: var(--calcite-ui-text-1);
max-width: 1024px;
min-width: 280px;
width: 70vw;
padding: 0 var(--calcite-spacing-double);
margin: 0 auto;
background-color: var(--calcite-ui-background);
}
/* Theme Switcher */
#theme-label {
position: fixed;
top: 20px;
right: 20px;
z-index: 2;
background-color: var(--calcite-ui-background);
border: 1px solid;
border-color: var(--calcite-ui-border-1);
border-radius: var(--calcite-border-radius);
margin: 0;
padding: 10px;
}
#theme-label label {
margin: 0;
}
</style>
</head>
<body>
<main>
<!-- calcite-switch -->
<div id="theme-label">
<calcite-label layout="inline">
Toggle theme
<calcite-switch id="theme-switch"></calcite-switch>
</calcite-label>
</div>
<h1><code>avatar</code></h1>
<p>Navigate through each individual sample. Each sample includes different properties but similar content, including the same user credentials.</p>
<h2>Test 1. Medium Avatar</h2>
<calcite-avatar full-name="Michael Jordan" user-id="0" username="mjordan"></calcite-avatar>
<h2>Test 2. Medium Avatar Thumbnail</h2>
<calcite-avatar full-name="Michael Jordan" thumbnail="https://www.biography.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cq_auto:good%2Cw_1200/MTY2Njc5NDYzOTQ4NDYxNDA4/michael-jordan.jpg" user-id="0" username="mjordan"></calcite-avatar>
<h2>Test 3. Small Avatar</h2>
<calcite-avatar full-name="Michael Jordan" scale="s" user-id="0" username="mjordan"></calcite-avatar>
<h2>Test 4. Small Avatar Thumbnail</h2>
<calcite-avatar full-name="Michael Jordan" scale="s" thumbnail="https://www.biography.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cq_auto:good%2Cw_1200/MTY2Njc5NDYzOTQ4NDYxNDA4/michael-jordan.jpg" user-id="0" username="mjordan"></calcite-avatar>
<h2>Test 5. Chip with Avatar</h2>
<calcite-chip>
<calcite-avatar slot="image" full-name="Michael Jordan" user-id="0" username="mjordan"></calcite-avatar>Michael Jordan
</calcite-chip>
<h2>Test 6. Chip with Avatar Thumbnail</h2>
<calcite-chip>
<calcite-avatar slot="image" full-name="Michael Jordan" thumbnail="https://www.biography.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cq_auto:good%2Cw_1200/MTY2Njc5NDYzOTQ4NDYxNDA4/michael-jordan.jpg" user-id="0" username="mjordan"></calcite-avatar>Michael Jordan
</calcite-chip>
</main>
</body>
<script>
window.onload = () => {
// Theme Switcher
const themeSwitch = document.getElementById("theme-switch");
themeSwitch.addEventListener("calciteSwitchChange", () => {
document.body.classList.toggle("calcite-theme-dark");
});
};
</script>
</html>