User:燃灯/invertBlock.js
外观
< User:燃灯
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
// 加入对应的css
importStylesheet( 'User:燃灯/invertBlock.css' );
// 电脑端其实上面那一行就够了,关键是手机上没法悬浮,所以。。。
$(function(){
// 如果rgb值大于这个,那么就在反白的时候顺道将文字变黑
var threshold = 220;
$('.inline-text-blocked').click(
function() {
$(this).addClass('clicked-on-a-block');
var color = $(this).css('color');
color = color.substring(color.indexOf('(') +1, color.indexOf(')')).split(', ');
if (color[0] > threshold && color[1] > threshold && color[2] > threshold){
$(this).css('color', "#000000aa");
}
}
);
});