質問編集履歴
3
HTML誤記修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
```html
|
19
19
|
<div class="con">
|
20
|
-
<a
|
20
|
+
<a href="#note1" class="clickToolTip"><img src="images.png"></a>
|
21
21
|
<p id="note1" class="toolTip invisible">
|
22
22
|
<a href="index.html">テキストリンク</a></a>
|
23
23
|
</p>
|
2
css割愛部分追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -28,10 +28,26 @@
|
|
28
28
|
display: none;
|
29
29
|
}
|
30
30
|
|
31
|
-
/*以下装飾部分は割愛*/
|
32
31
|
a.clickToolTip{
|
32
|
+
margin: 0;
|
33
|
+
padding: 2px 6px;
|
34
|
+
text-decoration: none;
|
35
|
+
color: #fff;
|
36
|
+
font-size: 12px;
|
33
37
|
}
|
34
38
|
p.toolTip{
|
39
|
+
margin: 0;
|
40
|
+
padding: 1em;
|
41
|
+
width: 70%;
|
42
|
+
background-color: #a92524;
|
43
|
+
-moz-border-radius: 5px;
|
44
|
+
top: 100px;
|
45
|
+
left: 0;
|
46
|
+
position: absolute;
|
47
|
+
z-index: 50;
|
48
|
+
font-size: 1rem;
|
49
|
+
line-height: 1.8;
|
50
|
+
font-weight: bold;
|
35
51
|
}
|
36
52
|
```
|
37
53
|
```js
|
1
見出しの変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
※hoverタイプにすることや、閉じるボタンを加えることは極力したくないです...
|
11
11
|
|
12
|
-
###
|
12
|
+
### 該当のソースコード
|
13
13
|
|
14
14
|
jsの最後の方にある「表示されたツールチップを隠す処理(マウスクリックで全て隠す)」が、
|
15
15
|
リンクのクリックも無効にしてしまっている、というところまではわかりましたが、
|