質問編集履歴
2
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
iframeで表示させようとしたんですが、httpsで表示できず...
|
5
5
|
どうにかjavascriptだけで表示させることは出来ないでしょうか?
|
6
6
|
|
7
|
+
ブラウザはGoogleChromeです。
|
7
8
|
```
|
8
9
|
function showTwitter() {
|
9
10
|
var TwitterBox = document.createElement('div');
|
1
コードの修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,5 +5,10 @@
|
|
5
5
|
どうにかjavascriptだけで表示させることは出来ないでしょうか?
|
6
6
|
|
7
7
|
```
|
8
|
-
|
8
|
+
function showTwitter() {
|
9
|
+
var TwitterBox = document.createElement('div');
|
10
|
+
TwitterBox.id = 'block';
|
11
|
+
document.getElementsByTagName('body')[0].appendChild(TwitterBox);
|
12
|
+
TwitterBox.innerHTML = '<iframe class="twitter" height="370" width="330" src="https://twitter.com/" scrolling="auto" style="position: absolute; bottom: 0; left: 0; border-radius: 5px; background-color: white; opacity: 0.65; z-index: 9999;"></iframe>';
|
13
|
+
}
|
9
14
|
```
|