Use CSS3 scale to achieve overall scaling of web pages

Source: Internet
Author: User

 QQ Mailbox Page Overall scaling effect, the original implementation method is so simple, here is an implementation example, you can refer to the following

Today I learned a little QQ mailbox page Overall scaling effect, the original implementation method is very simple, code as follows:    code as follows: <! DOCTYPE html>  <html>  <head>  <meta charset= "Utf-8"/>  <meta name= " Viewport "content=" Width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no ">  <title> Test page </title>  <style type= "text/css" >  div {  width:600px;  text-align:center;  font-size:4em;  color: #333; }  </style>  <script type= "Text/javascript" src= "http://" Code.jquery.com/jquery-1.11.0.js "></script>  <script type=" Text/javascript ">  $ (function () {  var r = document.body.offsetwidth/window.screen.availwidth;  $ (document.body). CSS ("-webkit-transform "," scale ("+ R +")); });  $ (window). Resize (function () {  var r = Document.body.offsetwidth/window.scre en.availwidth;  $ (document.body). CSS ("-webkit-transform", "scale (" + R +) "); });  </script>   </head>  <body>  <div> Change window size try, what will you find? </div>  </body>  </html> 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.