Welcome to mirror list, hosted at ThFree Co, Russian Federation.

avatars.pug « contents « src « docs - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e345c68b9b48a4d3e904d414daf25f759a08b5e (plain)
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
p Avatars are user profile pictures. 

.docs-demo.columns
  .column.col-6.col-xs-12
    figure.avatar.avatar-xl
      img(src="img/avatar-1.png" alt="Avatar XL")
    figure.avatar.avatar-lg
      img(src="img/avatar-2.png" alt="Avatar LG")
    figure.avatar
      img(src="img/avatar-3.png" alt="Avatar")
    figure.avatar.avatar-sm
      img(src="img/avatar-4.png" alt="Avatar SM")
    figure.avatar.avatar-xs
      img(src="img/avatar-5.png" alt="Avatar XS")
  .column.col-6.col-xs-12
    figure.avatar.avatar-xl(data-initial="YZ")
    figure.avatar.avatar-lg(data-initial="YZ")
    figure.avatar(data-initial="YZ")
    figure.avatar.avatar-sm(data-initial="YZ")
    figure.avatar.avatar-xs(data-initial="YZ")

p
  | Add the #[code avatar] class to #{'<img>'} element.
  | There are 4 additional sizes available, including #[code avatar-xl](64px), #[code avatar-lg](48px), #[code avatar-sm](24px), and #[code avatar-xs](16px).
  | By default, the avatar size is 32px.
p
  | For users who don't have profile pictures, you may use their initials for avatars.
  | Add the #[code avatar] class and avatar size class to #{'<div>'}  element.
  | The #[code data-initial] attribute is the name appear inside the avatar.

pre.code(data-lang='HTML')
  code
    :highlight(lang="html")
      <!-- Basic avatar examples -->
      <figure class="avatar avatar-xl">
        <img src="img/avatar-1.png" alt="...">
      </figure>

      <figure class="avatar avatar-xl" data-initial="YZ" style="background-color: #5755d9;"></figure>

      <!-- Show initals when avatar image is unavailable or not fully loaded -->
      <figure class="avatar avatar-xl" data-initial="YZ" style="background-color: #5755d9;">
        <img src="img/avatar-1.png" alt="...">
      </figure>

.docs-demo.columns
  .column.col-6.col-xs-12
    figure.avatar.avatar-xl
      img(src="img/avatar-1.png" alt="Avatar")
      img.avatar-icon(src="img/avatar-2.png" alt="Avatar")
    figure.avatar.avatar-lg
      img(src="img/avatar-2.png" alt="Avatar")
      img.avatar-icon(src="img/avatar-3.png" alt="Avatar")
    figure.avatar
      img(src="img/avatar-3.png" alt="Avatar")
      img.avatar-icon(src="img/avatar-4.png" alt="Avatar")
    figure.avatar.avatar-sm
      img(src="img/avatar-4.png" alt="Avatar")
      img.avatar-icon(src="img/avatar-5.png" alt="Avatar")
    figure.avatar.avatar-xs
      img(src="img/avatar-5.png" alt="Avatar")
      img.avatar-icon(src="img/avatar-1.png" alt="Avatar")

pre.code(data-lang='HTML')
  code
    :highlight(lang="html")
      <figure class="avatar avatar-xl">
        <img src="img/avatar-1.png" alt="...">
        <img src="img/avatar-5.png" class="avatar-icon" alt="...">
      </figure>
        
.docs-demo.columns
  .column.col-6.col-xs-12
    figure.avatar.avatar-xl(data-initial="YZ")
      i.avatar-presence.online
    figure.avatar.avatar-lg(data-initial="YZ")
      i.avatar-presence.busy
    figure.avatar(data-initial="YZ")
      i.avatar-presence.away
    figure.avatar.avatar-sm(data-initial="YZ")
      i.avatar-presence.offline
    figure.avatar.avatar-xs(data-initial="YZ")
      i.avatar-presence.online

p
  | Avatars support presence indicators.
  | You can add an #{'<i>'} element with the #[code avatar-presence] class, and add #[code online], #[code busy] or #[code away] class for different status colors.
  | The default is gray which means offline.

pre.code(data-lang='HTML')
  code
    :highlight(lang="html")
      <figure class="avatar avatar-xl">
        <img src="img/avatar-1.png" alt="...">
        <i class="avatar-presence online"></i>
      </figure>