mirror
by
noromanba
2019-08-23 [2019/08/23 11:49:41]
flip mirror-reversed images; e.g. selfie
-
/*
* @title mirror
* @description flip mirror-reversed images; e.g. selfie
* @include http://*
* @include https://*
* @license MIT License https://opensource.org/licenses/MIT
* @javascript_url
*/
(() => {
'use strict';
document.body.appendChild(Object.assign(document.createElement('style'), {
// TBD toggle
textContent: `
img {
transform: scaleX(-1);
}
`,
}));
})();
/* from *dumb* phone */
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。