spin
by
yuta25
2017-10-12 [2017/10/12 12:33:07]
http://let.st-hatelabo.com/unko-man/let/hLHWv-3firtV.bookmarklet.js
@@ -7,14 +7,14 @@
* @javascript_url
*/
-var lastLink = Array.from(document.querySelectorAll('head link')).pop()
-var fontAwesome = document.create('link')
-fontAwesome.href = '//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css'
-fontAwesome.rel = 'stylesheet'
-lastLink.after(fontAwesome)
-var i = 0
-Array.from(document.querySelectorAll('font,img,span,a,li')).forEach(function(e) {
- setTimeout(function() {
- e.classList.add('fa-spin')
- }, i * 10)
-})
+const lastLink = Array.from(document.querySelectorAll('head link')).pop();
+const fontAwesome = document.create('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);
+});
/*
* @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.create('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 です。