zoukankan      html  css  js  c++  java
  • 移动端强制横屏

    //参数是jquery对象
    changeOrientation($("html")) function changeOrientation($print) { var width = document.documentElement.clientWidth; var height = document.documentElement.clientHeight; if(width < height) { $print.width(height); $print.height(width); $print.css('top', height / 2 ); $print.css('left', height/ 2 ); $print.css('transform', 'rotate(90deg)'); $print.css('transform-origin', height/2+"px " +height/2+"px"); } var evt = "onorientationchange" in window ? "orientationchange" : "resize"; window.addEventListener(evt, function() { setTimeout(function() { var width = document.documentElement.clientWidth; var height = document.documentElement.clientHeight; if( width > height ){ $print.width(width); $print.height(height); $print.css('top', 0 ); $print.css('left', 0 ); $print.css('transform' , 'none'); $print.css('transform-origin' , height/2+"px " +height/2+"px"); } else { $print.width(height); $print.height(width); $print.css('top', (height-width)/2 ); $print.css('left', 0-(height-width)/2 ); $print.css('transform' , 'rotate(90deg)'); $print.css('transform-origin' , height/2+"px " +height/2+"px"); } }, 300); }, false); }

    changeOrientation($("html"))

    function changeOrientation($print) {
    var width = document.documentElement.clientWidth;
    var height = document.documentElement.clientHeight;
    if(width < height) {
    $print.width(height);
    $print.height(width);
    $print.css('top', height / 2 );
    $print.css('left', height/ 2 );
    $print.css('transform', 'rotate(90deg)');
    $print.css('transform-origin', height/2+"px " +height/2+"px");
    }

    var evt = "onorientationchange" in window ? "orientationchange" : "resize";
     
    window.addEventListener(evt, function() {


    setTimeout(function() {
    var width = document.documentElement.clientWidth;
    var height = document.documentElement.clientHeight;
     
     
     
    if( width > height ){
    $print.width(width);
    $print.height(height);
    $print.css('top', 0 );
    $print.css('left', 0 );
    $print.css('transform' , 'none');
    $print.css('transform-origin' , height/2+"px " +height/2+"px");
    }
    else {
    $print.width(height);
    $print.height(width);
    $print.css('top', (height-width)/2 );
    $print.css('left', 0-(height-width)/2 );
    $print.css('transform' , 'rotate(90deg)');
    $print.css('transform-origin' , height/2+"px " +height/2+"px");
    }
    }, 300);  
    }, false);
    }
  • 相关阅读:
    Swap Nodes in Pairs
    Length of Last Word
    leetcode开篇
    数据备份crontab+pyhon
    hdu 1848 博弈 难题 取石子 三堆
    jd1338.c
    ubuntu 13.10上配置打印机
    运煤智力题
    【开发记录】RTMP推流协议互联网直播点播平台EasyDSS新增生成水印模块记录
    互联网视频直播点播分析平台EasyDSS配置公网IP后登录提示“服务不存在”问题排查过程介绍
  • 原文地址:https://www.cnblogs.com/liuhao-web/p/11304346.html
Copyright © 2011-2022 走看看