-
Notifications
You must be signed in to change notification settings - Fork 6
/
codeiq_badges.user.js
58 lines (56 loc) · 1.79 KB
/
codeiq_badges.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// ==UserScript==
// @name CodeIQ Badges
// @namespace com.cielavenir
// @description Azicore's badges viewer with UserScript
// @include https://codeiq.jp/my_*.php*
// @run-at document-start
// @version 0.0.0.1
// ==/UserScript==
//http://azisava.sakura.ne.jp/_contact/codeiq/badge.html
var run=function($){
var g = $('img.tTip')
,b = $('body')
,w = $(window).width()
,n = g.size()
,k = Math.ceil(n / Math.ceil(n / 10))
,s = g.width() + 8;
b.append(
$('<div>').css({
width : w,
height : b.height(),
position : 'absolute',
left : 0,
top : 0,
background: '#fff'
}).append(
$('<p>').css({
textAlign: 'center',
marginTop: '64px',
fontSize : '48px'
}).html('You have ' + n + ' badges!')
).click(function() {
$('.b').remove()
}).addClass('b')
);
g.each(function(i) {
b.append(
$(this).clone().toggleClass('tTip b').css({
position: 'absolute',
left : i % k * s + (w - k * s + 8) / 2,
top : (i / k | 0) * s + 150
})
)
})
};
(function(){
document.addEventListener('DOMContentLoaded',function(){
var dt=document.getElementsByTagName('dt')[1];
dt.addEventListener('click',function(e){
var script = document.createElement('script');
script.textContent = '('+run.toString()+')(jQuery);';
document.body.appendChild(script);
},false);
dt.style.textDecoration='underline';
dt.setAttribute('title','クリックするとバッジ一覧が画面いっぱいに表示されます。再びクリックすると戻ります。');
},false);
})();