viewport width=
by
mino90
2020-12-31 [2020/12/31 04:21:52]
viewport の横幅を変える
@@ -1,9 +1,12 @@
/*
- * @title viewport 1024
- * @description
+ * @title viewport width=
+ * @description viewport の横幅を変える
* @include http://*
* @license MIT License
* @javascript_url
*/
-
-document.getElementsByName('viewport')[0].setAttribute('content', 'width=1024');
+(function() {
+let a=prompt('viewport width=');
+if ((a=="")||(a==null)) {} else {
+document.getElementsByName('viewport')[0].setAttribute('content', 'width='+a);}
+})();
/*
* @title viewport width=
* @description viewport の横幅を変える
* @include http://*
* @license MIT License
* @javascript_url
*/
(function() {
let a=prompt('viewport width=');
if ((a=="")||(a==null)) {} else {
document.getElementsByName('viewport')[0].setAttribute('content', 'width='+a);}
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。