質問するログイン新規登録

質問編集履歴

2

html、cssの追加

2019/02/28 02:50

投稿

YHoshi
YHoshi

スコア12

title CHANGED
File without changes
body CHANGED
@@ -41,7 +41,162 @@
41
41
 
42
42
  <script>
43
43
  ```
44
+ ```ここに言語を入力
45
+ <body>
46
+ <div class="launcherWrap" id="launcher">
47
+ <div class= "toolbox" id="matomari"></div>
48
+ <div class="borderDiv"></div>
49
+ <div class= "toolbox" id="kakikomi"></div>
50
+ <a class= "tool-layer" id="kakikomi1"></a>
51
+ <a class= "tool-layer" id="kakikomi2"></a>
52
+ <a class= "tool-layer" id="kakikomi3"></a>
53
+ <div class="borderDiv"></div>
54
+ <div class= "toolbox-minimum" id="minimum"></div>
55
+ </div>
56
+ <div class="Button" id="btn"><span>表示設定</span></div>
57
+ </body>
44
58
 
59
+ ```
60
+ ```ここに言語を入力
61
+ .Button{
62
+ width:100px;
63
+ height:20px;
64
+ border: 3px solid white;
65
+ background-color: #0080FF;
66
+ border-radius:10px;
67
+ font-size:15px ;
68
+ font-weight:bold;
69
+ padding:10px;
70
+ color:white;
71
+ text-align: right;
72
+ line-height: 20px;
73
+ }
74
+
75
+ .launcherWrap {
76
+ width:320px;
77
+ height: 50px;
78
+ border: 1px solid #0080FF;
79
+ background-color: white;
80
+ border-radius:10px;
81
+ justify-content: space-evenly;
82
+ display: -webkit-flex;
83
+ line-height: 50px;
84
+ }
85
+ #matomari{
86
+ width:35px;
87
+ height: 35px;
88
+ margin:auto;
89
+ text-align: center;
90
+ /* margin-bottom:auto; */
91
+ box-sizing: border-box;
92
+ background:url("images/image007.png" );
93
+ background-size:35px 35px;
94
+ }
95
+ #matomari:hover{
96
+ background:url('images/image008.png');
97
+ background-size:35px 35px;
98
+ }
99
+ #matomari:active{
100
+ background:url('images/image009.png');
101
+ background-size:35px 35px;
102
+ }
103
+
104
+
105
+ #kakikomi{
106
+ width:35px;
107
+ height: 35px;
108
+ margin:auto;
109
+ /* margin-bottom:auto; */
110
+ box-sizing: border-box;
111
+ text-align: center;
112
+ background:url("images/image001.png");
113
+ background-size:35px 35px;
114
+ }
115
+ #kakikomi:hover{
116
+ background:url("images/image002.png");
117
+ background-size:35px 35px;
118
+ }
119
+ #kakikomi:active{
120
+ background:url("images/image003.png");
121
+ background-size:35px 35px;
122
+ }
123
+ #kakikomi1 {
124
+ width:35px;
125
+ height: 35px;
126
+ margin:auto ;
127
+ background:url("images/image021.png");
128
+ background-size:35px 35px;
129
+ }
130
+ #kakikomi1:hover{
131
+ background:url("images/image022.png");
132
+ background-size:35px 35px;
133
+ }
134
+ #kakikomi1:active{
135
+ background:url("images/image023.png");
136
+ background-size:35px 35px;
137
+ }
138
+ #kakikomi2 {
139
+ width:35px;
140
+ height: 35px;
141
+ margin:auto ;
142
+ background:url("images/image013.png");
143
+ background-size:35px 35px;
144
+ }
145
+ #kakikomi2:hover{
146
+ background:url("images/image014.png");
147
+ background-size:35px 35px;
148
+ }
149
+ #kakikomi2:active{
150
+ background:url("images/image015.png");
151
+ background-size:35px 35px;
152
+ }
153
+ #kakikomi3 {
154
+ width:35px;
155
+ height: 35px;
156
+ margin:auto ;
157
+ background:url("images/image018.png");
158
+ background-size:35px 35px;
159
+ }
160
+ #kakikomi3:hover{
161
+ background:url("images/image016.png");
162
+ background-size:35px 35px;
163
+ }
164
+ #kakikomi3:active{
165
+ background:url("images/image017.png");
166
+ background-size:35px 35px;
167
+ }
168
+
169
+ #minimum{
170
+ width:35px;
171
+ height: 35px;
172
+ margin:auto;
173
+ /* margin-bottom:auto; */
174
+ box-sizing: border-box;
175
+ background:url("images/image004.png");
176
+ background-size:35px 35px;
177
+ }
178
+ #minimum:hover{
179
+ background:url("images/image005.png");
180
+ background-size:35px 35px;
181
+ }
182
+ #minimum:active{
183
+ background:url("images/image006.png");
184
+ background-size:35px 35px;
185
+ }
186
+ .borderDiv {
187
+ background: #97938a;
188
+ display: block;
189
+ width: 2px;
190
+ height: 30%;
191
+ top: 0;
192
+ /* bottom: 0; */
193
+ margin-bottom: auto;
194
+ margin-top: auto;
195
+ }
196
+
197
+ ```
198
+
45
199
  補足があります。
46
- 環境(コンパイラー、モジュール等)は既に整っており、進行中プロジェクトの中に組み込むサンプルコンテンツを、
200
+ 環境(コンパイラー、モジュール等)は既に整っており、進行中プロジェクトの中に組み込むサンプルコンテンツを、自分がjsで作ってしまったことが、事の発端であります。
47
- 自分がjsで作ってしまことが、事の発端であります
201
+ ・html,cssを追加しまた。
202
+ よろしくお願い致します。

1

補足追加

2019/02/28 02:50

投稿

YHoshi
YHoshi

スコア12

title CHANGED
File without changes
body CHANGED
@@ -40,4 +40,8 @@
40
40
  $(".Button, .launcherWrap" ).draggable();
41
41
 
42
42
  <script>
43
- ```
43
+ ```
44
+
45
+ 補足があります。
46
+ 環境(コンパイラー、モジュール等)は既に整っており、進行中プロジェクトの中に組み込むサンプルコンテンツを、
47
+ 自分がjsで作ってしまったことが、事の発端であります。