NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 小众软件倒着看专治颈椎病 V 最终就是不改版 // @namespace http://www.zji.me/ // @version 9981 // @description 没有,懒得写了,自己去小众软件看效果。 // @author 稻米鼠(坑王,专治强迫症) // @match *://www.appinn.com/* // @grant none // @require http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.3.min.js // ==/UserScript== $(document).ready(function(){ $("body").prepend('<div id="hahaha" style="width:100%;text-align:center;background:black;color:#FFF;padding:30px 0;font-size:20px;">为了广大读者们的健康着想,本站特别开发了颈椎保护阅读模式<br>点击下方按钮开启(特别提醒:本功能内测期间,此消息仅部分用户可见)<br><br><button id="gogogo">开启颈椎保护模式,充分保护颈椎健康</botton></div>'); $("#gogogo").click(function(){ $("#hahaha").remove(); $("body").css("transform","rotate(180deg)"); }); });