都是按F12进入console,再key入下面的代码。
方法1:
document.body.style.transform = "rotate(90deg)";//角度可以任意定义,负数亦可
方法2:
javascript:setInterval(function(){document.body.style.cssText+="-webkit-transform: rotate(-90deg);-moz-transform: rotate(-90deg)";},100);void(0);
enjoy~