@@ -9,13 +9,12 @@ */ (function(){ + //text var body=document.body.innerText .split(String.fromCharCode( 160 )).join(" ") // -> space .replace(/\r?\n/g,'\n') //改行コードを統一 .replace(/[ \t ]{2,}/g,' ') //[¥tなど]の連続 -> SPACE一つ-// .replace(/\t\n/g,'\n') //行末の¥t -> 削除.replace(/[ \t ]\n/g,'\n') //行末の[ など] -> 削除-// .replace(/[ ]\n/g,'\n') //行末の[ など] -> 削除.replace(/\n{3,}/g,'\n\n') //¥nの3つ以上の連続 -> ¥n¥n //css @@ -27,11 +26,11 @@ bodyStyle.overFlow='hidden'; document.getElementsByTagName('html')[0].style.width=window.innerWidth+'px'; document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px'; + document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px'; + //html body='<textarea style="padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+body+'</textarea>'; document.body.innerHTML=body;-- document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';})() /*
/*
* @title 【スマホ用】プレーンテキストでコピペしたい。
* @description サイト上のテキスト書式をリセットします。
* @include http://*
* @license MIT License
* @require
@private
iPhone Safariで確認。
*/
(function(){
//text
var body=document.body.innerText
.split(String.fromCharCode( 160 )).join(" ") // -> space
.replace(/\r?\n/g,'\n') //改行コードを統一
.replace(/[ \t ]{2,}/g,' ') //[¥tなど]の連続 -> SPACE一つ
.replace(/[ \t ]\n/g,'\n') //行末の[ など] -> 削除
.replace(/\n{3,}/g,'\n\n') //¥nの3つ以上の連続 -> ¥n¥n
//css
,
bodyStyle=document.getElementsByTagName('body')[0].style;
bodyStyle.all='initial'; //reset
bodyStyle.width='100%';
bodyStyle.height='100%';
bodyStyle.overFlow='hidden';
document.getElementsByTagName('html')[0].style.width=window.innerWidth+'px';
document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px';
document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';
//html
body='<textarea style="padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+body+'</textarea>';
document.body.innerHTML=body;
})()
/*
javascript:(function(){var body=document.body.innerText .split(String.fromCharCode(160)).join(" ").replace(/\r?\n/g,'\n').replace(/[ \t ]{2,}/g,' ').replace(/\t\n/g,'\n').replace(/[ \t ]\n/g,'\n').replace(/\n{3,}/g,'\n\n'),bodyStyle=document.getElementsByTagName('body')[0].style;bodyStyle.all='initial';bodyStyle.width='100%25';bodyStyle.height='100%25';bodyStyle.overFlow='hidden';document.getElementsByTagName('html')[0].style.width=window.innerWidth+'px';document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px';body='<textarea style="padding:6px;height:100%25;font-size:16px;border-radius:0" readonly>'+body+'</textarea>';document.body.innerHTML=body;document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';})()
*/