替代转换:CSS中的scale()?

时间:2017-02-26 15:11:14

标签: html css angularjs css3

我想每个人都知道,如果元素的容器用CSS的position: fixed属性修饰,那么CSS属性transform的所有元素都不会按预期工作。

我经历了很多线程,没有找到这个问题的具体解决方案。我的意思是我的应用程序中有几个元素需要position:fixed才能工作,因为我已在transform: scale()本身应用了body属性。

由于我找不到任何使这个东西起作用的技巧,我会问,是否有替代CSS的transform: scale()属性。 zoom当然不是答案,因为它仍然与许多浏览器(尤其是Firefox)不兼容。

请建议我应该做些什么改变才能使它们都有效?

angular.element($window).on('resize load', function () {
    var isFirefox = navigator.userAgent.indexOf("Firefox") != -1;
    var oWidth = angular.element($window).width();
    var oHeight = angular.element($window).height();
    console.log(oWidth + " " + oHeight);
    if (oWidth >= 1903)
        applyCss(100, 100, 1, isFirefox);
    if (oWidth < 1903 && oWidth > 1441)
        applyCss(125, 125, 0.8, isFirefox);
    if (oWidth <= 1441 && oWidth > 1268)
        applyCss(149.3, 149.3, 0.67, isFirefox);
    if (oWidth <= 1268)
        applyCss(166.7, 166.7, 0.6, isFirefox);
});

function applyCss(width, height, scale, isFirefox) {
    var body = angular.element('body');
    body.css({
        '-moz-transform' : 'scale(' + scale + ')',
        '-moz-transform-origin' : 'left top',
        '-webkit-transform' : 'scale(' + scale + ')',
        '-webkit-transform-origin' : 'left top',
        'transform' : 'scale(' + scale + ')',
        'transform-origin' : 'left top',
        'width' : width + '%',
        'height' : height + '%',
    });
    if (isFirefox) //body's position absolute in case of Firefox
        body.css({
            'position' : 'absolute'
        });
}

我用来实现扩展的代码。

1 个答案:

答案 0 :(得分:0)

你的div是100x200。如果你想缩放(x)你需要做的就是height = 100 * x和width = 200 * x。当然,您可以使用纯CSS执行此操作,但是编写代码更容易。