平板电脑设备宽度的CSS表达式

时间:2012-07-20 07:31:58

标签: css css-expressions

我需要找到并使用css表达式从css中应用平板电脑宽度。 我有一个div内容。它应该在纵向模式下应用宽度100%,当我转向横向时,div应该将宽度更改为平板电脑设备宽度的一半(平板电脑宽度/ 2)。如何在css中应用这个表达式方法?

1 个答案:

答案 0 :(得分:2)

我试图避开表达式,因为它们仅限于Internet Explorer 5,6和7(平板电脑运行的是什么?),它们会大大降低速度(性能明智)。无论如何,试试这个:

@media screen and (orientation:portrait) {
    /* Portrait styles */
}

@media screen and (orientation:landscape) {
    .element {
        width:expression(document.body.clientWidth / 2);
    }
}

您还可以尝试更多细节 - 这些将被视为黑客攻击(感谢TheBlackBenzKid建议):

/* Windows 7 Phone - WP7 */
@media only screen and (max-device-width: 480px) and (orientation:portrait) {
}
@media only screen and (max-device-width: 480px) and (orientation:landscape) {
}
/* Apple iPhone */
@media only screen and (max-device-width: 320px) and (orientation:portrait) {
}
@media only screen and (max-device-width: 320px) and (orientation:landscape) {

}

如果不使用表达式(例如,定位到其他浏览器以及..好吧,平板电脑),您可以使用小的javascript来检测方向,然后在元素中添加一个类:

HTML:

<body onorientationchange="updateOrientation();">

使用Javascript:

function updateOrientation() {
    if(window.innerWidth> window.innerHeight){
        //we are in landscape mode, add the 'LandscapeClass' class to the element
        document.getElementById("element").className += " LandscapeClass";
    } else {
        //we are in portrait mode, remove the class
        document.getElementById("element").className = 
           document.getElementById("element").className.replace
              ( /(?:^|\s)LandscapeClass(?!\S)/ , '' );
}

如果使用jQuery,你可以试试这个,直接修改元素的(内联)CSS:

function updateOrientation() {
    var $width;
    if(window.innerWidth> window.innerHeight){
        $width = window.innerWidth/2;
    } else {
        $width = '100%';
    }
    $(".element").css({width:$width});
}

我没有测试任何这个,但我认为它会起作用