都是按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~
