質問編集履歴
1
ソースコードの変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,71 +16,141 @@
|
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
+
|
20
|
+
|
19
21
|
<!DOCTYPE html>
|
22
|
+
|
23
|
+
|
20
24
|
|
21
25
|
<html lang="ja">
|
22
26
|
|
27
|
+
|
28
|
+
|
23
29
|
<head>
|
30
|
+
|
31
|
+
|
24
32
|
|
25
33
|
<meta charset="UTF-8">
|
26
34
|
|
35
|
+
|
36
|
+
|
27
37
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
38
|
+
|
39
|
+
|
28
40
|
|
29
41
|
<title></title>
|
30
42
|
|
43
|
+
|
44
|
+
|
31
45
|
<link rel="stylesheet" href="">
|
46
|
+
|
47
|
+
|
32
48
|
|
33
49
|
</head>
|
34
50
|
|
51
|
+
|
52
|
+
|
35
53
|
<body>
|
54
|
+
|
55
|
+
|
36
56
|
|
37
57
|
<div id="signup-show"><a href="#" class="login">はじめる</a></div>
|
38
58
|
|
39
59
|
|
40
60
|
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
41
65
|
<div class="login-modal">
|
66
|
+
|
67
|
+
|
42
68
|
|
43
69
|
<div id="modal">
|
44
70
|
|
71
|
+
|
72
|
+
|
45
73
|
<h2>ログイン</h2>
|
74
|
+
|
75
|
+
|
46
76
|
|
47
77
|
<input type="text">
|
48
78
|
|
79
|
+
|
80
|
+
|
49
81
|
<p></p>
|
82
|
+
|
83
|
+
|
50
84
|
|
51
85
|
<input type="submit" class="submit">
|
52
86
|
|
87
|
+
|
88
|
+
|
53
89
|
<p>または</p>
|
90
|
+
|
91
|
+
|
54
92
|
|
55
93
|
<input type="text">
|
56
94
|
|
95
|
+
|
96
|
+
|
57
97
|
</div>
|
98
|
+
|
99
|
+
|
58
100
|
|
59
101
|
</div>
|
60
102
|
|
61
103
|
|
62
104
|
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
63
109
|
<script src="jquery.min.js"></script>
|
110
|
+
|
111
|
+
|
64
112
|
|
65
113
|
<script>
|
66
114
|
|
115
|
+
|
116
|
+
|
67
117
|
$('.login-modal').hide();
|
118
|
+
|
119
|
+
|
68
120
|
|
69
121
|
$('#signup-show').on('click', function() {
|
70
122
|
|
123
|
+
|
124
|
+
|
71
125
|
$('#modal').fadeIn();
|
72
126
|
|
127
|
+
|
128
|
+
|
73
129
|
});
|
130
|
+
|
131
|
+
|
74
132
|
|
75
133
|
</script>
|
76
134
|
|
77
135
|
|
78
136
|
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
79
141
|
</body>
|
142
|
+
|
143
|
+
|
80
144
|
|
81
145
|
</html>
|
82
146
|
|
147
|
+
|
148
|
+
|
149
|
+
```ここに言語を入力
|
150
|
+
|
151
|
+
コード
|
152
|
+
|
83
|
-
``
|
153
|
+
`````
|
84
154
|
|
85
155
|
|
86
156
|
|