spin
by
yuta25
2017-10-12 [2017/10/12 12:33:07]
http://let.st-hatelabo.com/unko-man/let/hLHWv-3firtV.bookmarklet.js
-
/*
* @title spin
* @description http://let.st-hatelabo.com/unko-man/let/hLHWv-3firtV.bookmarklet.js
* @include http://*
* @license MIT License
* @require
* @javascript_url
*/
const lastLink = Array.from(document.querySelectorAll('head link')).pop();
const fontAwesome = document.createElement('link');
fontAwesome.href = '//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css';
fontAwesome.rel = 'stylesheet';
lastLink.after(fontAwesome);
let i = 0;
Array.from(document.querySelectorAll('font,img,span,a,li')).forEach(e => {
setTimeout(() => {
e.classList.add('fa-spin');
}, i * 10);
});
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。