// ==UserScript== // @name 微信PC横屏网页旋转 // @description 针对微信PC上横屏的长图文章,从此不用歪脖子了😁 // @namespace http://study365.free.nf // @version 2 // @match https://mp.weixin.qq.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { let div = document.createElement("div"); div.innerHTML = "
旋转页面
"; document.body.appendChild(div); let b1=document.getElementById('b123456789'); b1.addEventListener('click', function(event) { document.body.style.cssText+='-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);height:700px'; }); })();