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

experimentals.pug « src « docs - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f71e966b1b809ea0a355af0f9ad93a9e88ce343 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
extends _layout/_docs-layout.pug

block variables
  - var slug = 'experimentals'
  - var parent = 'experimentals'
  - var title = 'Experimentals - Spectre.css CSS Framework'
  - var description = 'Spectre.css CSS Framework is a lightweight, responsive and modern CSS framework for faster and extensible development. Spectre provides basic styles for typography and elements, flexbox based responsive layout system, pure CSS components and utilities with best practice coding and consistent design language.'

block docs-content
  +docs-heading('experimentals', 'Experimentals')
    include _layout/_ad-g.pug

    p
      | The Experimentals include experimental elements and features, mostly are not yet ready for wide use.
      | These elements and components are limited inside #[code spectre-exp.scss] before browsers fully support them.
      | Sometimes, there are some specific browsers targeted components.

    .docs-demo.columns
      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 360-Degree Viewer
          .card-body
            | Interactive product photo viewer
          .card-footer
            a.btn.btn-primary(href="experimentals/autocomplete.html") View
      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Autocomplete
          .card-body
            | Form component provides suggestions while you type
          .card-footer
            a.btn.btn-primary(href="experimentals/autocomplete.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Calendars
          .card-body
            | Date or date range picker and events display based on Flexbox
          .card-footer
            a.btn.btn-primary(href="experimentals/calendars.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Carousels
          .card-body
            | Pure CSS slideshows for cycling images
          .card-footer
            a.btn.btn-primary(href="experimentals/carousels.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Comparison sliders
          .card-body
            | Pure CSS sliders for comparing two images
          .card-footer
            a.btn.btn-primary(href="experimentals/comparison.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Filters
          .card-body
            | CSS only content filters
          .card-footer
            a.btn.btn-primary(href="experimentals/filters.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Meters
          .card-body
            | Representing the value within the known range
          .card-footer
            a.btn.btn-primary(href="experimentals/meters.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Off-canvas
          .card-body
            | Navigation layout that sidebars can slide in and out of the viewport
          .card-footer
            a.btn.btn-primary(href="experimentals/off-canvas.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Parallax
          .card-body
            | Pure CSS Apple TV/tvOS hover parallax effect
          .card-footer
            a.btn.btn-primary(href="experimentals/parallax.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Progress
          .card-body
            | Indicating the progress completion of a task
          .card-footer
            a.btn.btn-primary(href="experimentals/progress.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Sliders
          .card-body
            | Selecting values from ranges
          .card-footer
            a.btn.btn-primary(href="experimentals/sliders.html") View

      .column.col-6.col-xs-12
        .card
          .card-header
            .card-title.h5 Timelines
          .card-body
            | Ordered sequences of activities
          .card-footer
            a.btn.btn-primary(href="experimentals/timelines.html") View

    include _layout/_ad-c.pug

  include _layout/_footer.pug