質問編集履歴

2

aaaa

2020/09/06 12:53

投稿

okkeeeee
okkeeeee

スコア3

test CHANGED
File without changes
test CHANGED
@@ -70,18 +70,6 @@
70
70
 
71
71
 
72
72
 
73
- const menu_div = document.getElementsByClassName('menu');
74
-
75
- menu_div[0].classList.add('menu_hidden');
76
-
77
-
78
-
79
- function menu_ctl() {
80
-
81
- menu_div[0].classList.toggle('menu_hidden');
82
-
83
- }
84
-
85
73
 
86
74
 
87
75
  map.addLayer(tiles);

1

css

2020/09/06 12:53

投稿

okkeeeee
okkeeeee

スコア3

test CHANGED
File without changes
test CHANGED
@@ -105,73 +105,3 @@
105
105
 
106
106
 
107
107
  ```css
108
-
109
- #map {
110
-
111
- position: absolute;
112
-
113
- top: 50px;
114
-
115
- left: 0;
116
-
117
- right: 0;
118
-
119
- bottom: 0;
120
-
121
- }
122
-
123
-
124
-
125
- .submit-btn {
126
-
127
- position: absolute;
128
-
129
- z-index: 1;
130
-
131
- height: 50px;
132
-
133
- width: 50px;
134
-
135
- top: 70px;
136
-
137
-
138
-
139
- font-size: 30px;
140
-
141
- }
142
-
143
-
144
-
145
- .menu {
146
-
147
- background-color: aquamarine;
148
-
149
- width: 370px;
150
-
151
- height: 100%;
152
-
153
- position: fixed;
154
-
155
- top: 30px;
156
-
157
- right: 0px;
158
-
159
- transition-property: all;
160
-
161
- transition-duration: 1s;
162
-
163
- }
164
-
165
-
166
-
167
- .menu_hidden {
168
-
169
- right: -370px;
170
-
171
- transition-duration: 0s;
172
-
173
- }
174
-
175
-
176
-
177
- ```