Skip to content

Commit ab71c01

Browse files
author
arnau
committed
Animating Settings view
1 parent 3b8e189 commit ab71c01

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

index.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
<section role="region" id="list-view">
1515
<header>
16+
<menu type="toolbar">
17+
<button id="settings-btn"><span class="icon icon-settings">settings</span></button>
18+
</menu>
1619
<h1>demo Store</h1>
1720
</header>
1821
<article id="appList" data-type="list">
@@ -37,14 +40,16 @@ <h1>demo Store</h1>
3740
</article>
3841
</section>
3942

40-
<section role="region" id="settings-view">
43+
<section role="region" id="settings-view" class="move-down skin-organic">
4144
<header>
45+
<button id="close-btn"><span class="icon icon-close">close</span></button>
4246
<h1>Settings</h1>
4347
</header>
4448
<article>
4549
<!-- Content -->
4650
</article>
4751
</section>
4852

53+
<script src="js/app.js"></script>
4954
</body>
5055
</html>

js/app.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//Show / Hide Settings view
2+
var btnSettings = document.querySelector("#settings-btn");
3+
var viewSettings = document.querySelector("#settings-view");
4+
btnSettings.addEventListener ('click', function () {
5+
viewSettings.classList.remove('move-down');
6+
viewSettings.classList.add('move-up');
7+
});
8+
var btnCloseSettings = document.querySelector("#close-btn");
9+
btnCloseSettings.addEventListener ('click', function () {
10+
viewSettings.classList.remove('move-up');
11+
viewSettings.classList.add('move-down');
12+
});

style/app.css

+14-1
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,23 @@ section[role="region"] {
2020
background: #fff;
2121
}
2222

23-
#settings-view{
23+
#settings-view {
24+
z-index: 10;
25+
}
26+
27+
.move-down {
2428
transform: translateY(100%);
29+
transition: all 0.2s;
2530
}
2631

32+
.move-up {
33+
transform: translateY(0);
34+
transition: all 0.2s;
35+
}
36+
37+
section[role="region"] > header:first-child .icon.icon-settings {
38+
background-image: url(images/settings.png);
39+
}
2740

2841
[data-type="list"] li > a aside img {
2942
height: 4rem;

style/images/settings.png

714 Bytes
Loading

0 commit comments

Comments
 (0)