zoukankan      html  css  js  c++  java
  • AS2 的全屏自适应

    function Move(obj, to_x, to_y, duration)
    {
        var _loc2 = new mx.transitions.Tween(obj, "_x", mx.transitions.easing.Strong.easeOut, obj._x, to_x, duration, false);
        _loc2.start();
        var _loc3 = new mx.transitions.Tween(obj, "_y", mx.transitions.easing.Strong.easeOut, obj._y, to_y, duration, false);
        _loc3.start();
    } // End of the function
    function TopCenter(obj, to_x, to_y, duration)
    {
        var _loc4 = Stage.width;
        var _loc7 = obj._width;
        to_x = to_x + (_loc4 - _loc7) / 2;
        to_y = to_y + 0;
        var _loc5 = new mx.transitions.Tween(obj, "_x", mx.transitions.easing.Strong.easeOut, obj._x, to_x, duration, false);
        _loc5.start();
        var _loc6 = new mx.transitions.Tween(obj, "_y", mx.transitions.easing.Strong.easeOut, obj._y, to_y, duration, false);
        _loc6.start();
    } // End of the function
    function BottomCenter(obj, to_x, to_y, duration)
    {
        var _loc5 = Stage.width;
        var _loc4 = Stage.height;
        var _loc9 = obj._width;
        var _loc8 = obj._height;
        to_x = to_x + (_loc5 - _loc9) / 2;
        to_y = to_y + (_loc4 - _loc8);
        var _loc6 = new mx.transitions.Tween(obj, "_x", mx.transitions.easing.Strong.easeOut, obj._x, to_x, duration, false);
        _loc6.start();
        var _loc7 = new mx.transitions.Tween(obj, "_y", mx.transitions.easing.Strong.easeOut, obj._y, to_y, duration, false);
        _loc7.start();
    } // End of the function
    function Center(obj, to_x, to_y, duration)
    {
        var _loc5 = Stage.width;
        var _loc4 = Stage.height;
        var _loc9 = obj._width;
        var _loc8 = obj._height;
        to_x = to_x + (_loc5 - _loc9) / 2;
        to_y = to_y + (_loc4 - _loc8) / 2;
        var _loc6 = new mx.transitions.Tween(obj, "_x", mx.transitions.easing.Strong.easeOut, obj._x, to_x, duration, false);
        _loc6.start();
        var _loc7 = new mx.transitions.Tween(obj, "_y", mx.transitions.easing.Strong.easeOut, obj._y, to_y, duration, false);
        _loc7.start();
    } // End of the function
    function Center2(obj, to_x, to_y, to_width, to_height, duration)
    {
        var _loc5 = Stage.width;
        var _loc4 = Stage.height;
        var _loc9 = to_width;
        var _loc8 = to_height;
        to_x = to_x + (_loc5 - _loc9) / 2;
        to_y = to_y + (_loc4 - _loc8) / 2;
        var _loc6 = new mx.transitions.Tween(obj, "_x", mx.transitions.easing.Strong.easeOut, obj._x, to_x, duration, false);
        _loc6.start();
        var _loc7 = new mx.transitions.Tween(obj, "_y", mx.transitions.easing.Strong.easeOut, obj._y, to_y, duration, false);
        _loc7.start();
    } // End of the function
    stop ();
    Stage.align = "TL";
    Stage.scaleMode = "noScale";
    var ReSizer = new Object();
    ReSizer.onResize = function ()
    {
        var _loc1 = 20;
        Center2(laoding, 0, 0, 275, 110, _loc1);
    };
    Stage.addListener(ReSizer);
    ReSizer.onResize();
    

      

  • 相关阅读:
    git中Please enter a commit message to explain why this merge is necessary.
    用$(this)选择其下带有class的子元素
    将某页面中ajax中获取到的信息放置到sessionStorage中保存,并在其他页面调用这些数据。
    返回顶部黑科技
    对于div里面内容过大根据长度或者宽度进行适配,然后可以滚轮缩放的功能
    vue runtime报错问题
    webpack简单配置
    input type=color 设置颜色
    vue统一注册组件
    vue模板字符串写法
  • 原文地址:https://www.cnblogs.com/regalys168/p/4572256.html
Copyright © 2011-2022 走看看