首页javascriptrotatejQuery Style - 如何旋转主体以将网页上下翻转

jQuery Style - 如何旋转主体以将网页上下翻转

我们想知道如何旋转主体以将网页上下翻转。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.8.3.js'></script>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
    $('body').css('transform', 'rotate(180deg)');
});//]]>  
</script>
</head>
<body>  Hello world!
</body>
</html>