Skip to content

Commit 54ef560

Browse files
committed
made large responsive demo layout functional w/o JS (fixes #6)
1 parent 868d71f commit 54ef560

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

css/responsive.css

+21-3
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,35 @@
2929
background-image: none;
3030
}
3131

32-
.views-nav a.is-active {
32+
.demo-active .views-nav a.is-active {
3333
background-image: url(../img/arrow-right.svg);
3434
color: #999;
3535
}
3636

3737
.views-main .view {
38-
display: none;
38+
border-radius: 0;
39+
border-top-width: 0;
3940
margin-left: 27%;
4041
}
4142

42-
.views-main .view.is-active {
43+
.demo-active .views-main .view {
44+
display: none;
45+
}
46+
47+
.views-main .view:first-child,
48+
.demo-active .views-main .view {
49+
border-top-left-radius: 0.5em;
50+
border-top-right-radius: 0.5em;
51+
border-top-width: 2px;
52+
}
53+
54+
.views-main .view:last-child,
55+
.demo-active .views-main .view {
56+
border-bottom-left-radius: 0.5em;
57+
border-bottom-right-radius: 0.5em;
58+
}
59+
60+
.demo-active .views-main .view.is-active {
4361
display: block;
4462
}
4563

responsive.html

+2
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ <h2>Where to get it</h2>
142142
// are turned off. I would not recommend using this outside
143143
// the context of this demo... consider it a placeholder for
144144
// "your large layout logic here".
145+
$viewContainer.addClass('demo-active');
145146
$('a[data-pushview]').on('click', function (event) {
146147
var href = $(this).attr('href')
147148
, $target = $(href)
@@ -158,6 +159,7 @@ <h2>Where to get it</h2>
158159
})
159160
// This is called when the plugin is _about_ to activate.
160161
.on('slideViewBeforeOn', function () {
162+
$viewContainer.removeClass('demo-active');
161163
// Remove the event we bound to these elements in the
162164
// previous function so that SimpleSlideView can use
163165
// them without conflicts.

0 commit comments

Comments
 (0)