質問編集履歴
2
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,9 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
+
```
|
22
|
+
|
21
|
-
|
23
|
+
<!-- ボタン部分 -->
|
22
24
|
|
23
25
|
<div class="btns">
|
24
26
|
|
@@ -74,7 +76,9 @@
|
|
74
76
|
|
75
77
|
|
76
78
|
|
79
|
+
```
|
80
|
+
|
77
|
-
|
81
|
+
$(function() {
|
78
82
|
|
79
83
|
// $("#show-modal").click(function(){
|
80
84
|
|
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,7 +14,107 @@
|
|
14
14
|
|
15
15
|
### コード
|
16
16
|
|
17
|
+
HTML
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```<!-- ボタン部分 -->
|
22
|
+
|
23
|
+
<div class="btns">
|
24
|
+
|
25
|
+
<a class="new btn" id="show-modal">新規登録はこちら</a>
|
26
|
+
|
27
|
+
<h4>or</h4>
|
28
|
+
|
29
|
+
<a class="face btn" href="https://ja-jp.facebook.com/">Facebookで登録</a>
|
30
|
+
|
31
|
+
<a class="tw btn" href="https://twitter.com/progatejp?lang=ja">Twitterで登録</a>
|
32
|
+
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<!-- ボタン部分 -->
|
36
|
+
|
37
|
+
<!-- modal部分 -->
|
38
|
+
|
39
|
+
<div class="signup-modal-wrapper" id="signup-modal">
|
40
|
+
|
41
|
+
<div class="modal">
|
42
|
+
|
43
|
+
<div id="close-modal">
|
44
|
+
|
45
|
+
<i class="fa fa-2x fa-times" id="close-modal"></i>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
<div id="signup-form">
|
50
|
+
|
51
|
+
<h2>Emailで新規登録</h2>
|
52
|
+
|
53
|
+
<form action="#">
|
54
|
+
|
55
|
+
<input class="form-control" type="text" placeholder="メールアドレス">
|
56
|
+
|
57
|
+
<input class="form-control" type="password" placeholder="パスワード">
|
58
|
+
|
59
|
+
<div id="submit-btn">新規登録</div>
|
60
|
+
|
61
|
+
</form>
|
62
|
+
|
63
|
+
</div>
|
64
|
+
|
65
|
+
</div>
|
66
|
+
|
67
|
+
</div>
|
68
|
+
|
69
|
+
コード
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
jQuery
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
```$(function() {
|
78
|
+
|
79
|
+
// $("#show-modal").click(function(){
|
80
|
+
|
81
|
+
// $("#signup-modal").fadeIn();
|
82
|
+
|
83
|
+
// });
|
84
|
+
|
17
|
-
|
85
|
+
// $("#close-modal").click(function(){
|
86
|
+
|
87
|
+
// $("#signup-modal").fadeOut();
|
88
|
+
|
89
|
+
// });
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
$("#show-modal").hover (
|
96
|
+
|
97
|
+
function() {
|
98
|
+
|
99
|
+
$("#signup-modal").fadeIn();
|
100
|
+
|
101
|
+
},
|
102
|
+
|
103
|
+
function(){
|
104
|
+
|
105
|
+
$("#signup-modal").fadeOut();
|
106
|
+
|
107
|
+
}
|
108
|
+
|
109
|
+
)
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
});
|
114
|
+
|
115
|
+
コード
|
116
|
+
|
117
|
+
```
|
18
118
|
|
19
119
|
このようなコードで**新規登録ボタン**にカーソルを合わせると**登録画面**は出るものの、すぐに消えてしまいます。
|
20
120
|
|