File tree 4 files changed +32
-2
lines changed
4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 13
13
14
14
< section role ="region " id ="list-view ">
15
15
< header >
16
+ < menu type ="toolbar ">
17
+ < button id ="settings-btn "> < span class ="icon icon-settings "> settings</ span > </ button >
18
+ </ menu >
16
19
< h1 > demo Store</ h1 >
17
20
</ header >
18
21
< article id ="appList " data-type ="list ">
@@ -37,14 +40,16 @@ <h1>demo Store</h1>
37
40
</ article >
38
41
</ section >
39
42
40
- < section role ="region " id ="settings-view ">
43
+ < section role ="region " id ="settings-view " class =" move-down skin-organic " >
41
44
< header >
45
+ < button id ="close-btn "> < span class ="icon icon-close "> close</ span > </ button >
42
46
< h1 > Settings</ h1 >
43
47
</ header >
44
48
< article >
45
49
<!-- Content -->
46
50
</ article >
47
51
</ section >
48
52
53
+ < script src ="js/app.js "> </ script >
49
54
</ body >
50
55
</ html >
Original file line number Diff line number Diff line change
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
+ } ) ;
Original file line number Diff line number Diff line change @@ -20,10 +20,23 @@ section[role="region"] {
20
20
background : # fff ;
21
21
}
22
22
23
- # settings-view {
23
+ # settings-view {
24
+ z-index : 10 ;
25
+ }
26
+
27
+ .move-down {
24
28
transform : translateY (100% );
29
+ transition : all 0.2s ;
25
30
}
26
31
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
+ }
27
40
28
41
[data-type = "list" ] li > a aside img {
29
42
height : 4rem ;
You can’t perform that action at this time.
0 commit comments