-

 -

  • Adobe Illustrator (5)
  •     (5)
  • Codepen (102)
  •     (47)
  •     (1)
  • Corel PSP (70)
  •     (1)
  •     (1)
  •     (1)
  • DP Animation Maker (2)
  • Fanta Morph (6)
  • Google (1)
  •     (1)
  • HTML5 (8)
  • (12)
  • (5)
  • (12)
  •    Cent (1)
  •    Google Chrome (2)
  •    Opera (2)
  •     (7)
  • (48)
  •     (18)
  • (16)
  •     (1)
  •     (3)
  • (2)
  •     (2)
  • (31)
  •    , (28)
  • (3)
  •     (1)
  • (28)
  •     (1)
  • (2)
  • (12)
  • (4)
  • (2)
  • (21)
  • (13)
  • (3)
  • (1)
  • (6)
  • (1)
  • (5)
  • (98)
  • (0)
  • (5)
  • - (9)
  • (344)
  •     (3)
  •     (249)
  •     (78)
  •     (3)
  •     (1)
  • (32)
  • (4)
  • (12)
  • (63)
  •     (1)
  •     (20)
  •     (15)
  •     (13)
  •     (2)
  •     (1)
  •     (4)
  •     (1)
  •     (2)
  • (5)
  • (14)
  • (23)
  • (29)
  •     (10)
  •     (4)
  •     (4)
  • (16)
  • (76)
  • (67)
  • (1)
  • (28)
  •     (24)
  •     (4)
  • (3)
  •     (1)
  •     (1)
  • (22)
  • (26)
  •     (1)
  • (23)
  • , (34)
  • (137)
  • (4)
  •     (3)
  • (22)
  • (2)
  • (1)
  • (50)
  •    Explandio VC (1)
  •    iClone (3)
  •    PhotoFiltreStudioX (2)
  •    Sothink SWF Quicker (5)
  •     (1)
  •     (37)
  •     (1)
  • (38)
  • (3)
  • (41)
  •     (2)
  •     (39)
  • (0)
  • (1)
  • (1)
  • (8)
  • (3)
  • (1)
  • (3)
  • (1)
  • (26)
  •     (2)
  •     (6)
  •     (5)
  •     (10)
  • Jasc Animation Shop (9)
  • (51)
  •     (2)
  • (451)
  •     (10)
  •     (8)
  •     (30)
  •     (86)
  •     (50)
  •     (1)
  •     (117)
  •    - (25)
  • (22)
  • (1)
  • (144)
  •     (6)
  •     (7)
  •     (6)
  •     (123)
  • (65)
  •     (3)
  •     (14)
  •     (1)
  •     (5)
  •     (13)
  •     (27)
  • (4)
  • (30)
  •     (4)
  • (0)
  • (12)
  • (21)
  •     (1)
  • (1)
  • (5)
  •     (1)
  •     (3)

 -

  •    : - , . , "
  •     , , , 24 . !
  • - - - -
  •     - - . : Internet Explorer 6, Fire Fox 1.5, Opera 9.5, Safari 3.1.1 JavaScript.

 -

18:22 22.07.2015
: 8
18:06 12.07.2015
: 2
10:02 12.07.2015
: 2

 -

_ _ 21.12.2012 20:50:16:

 -

_:

 -

   __

 - e-mail

 

 -

( : 5) __ _ __ _ __

 -

 LiveInternet.ru:
: 24.11.2012
:
:
: 18032

:


? ( !).

, 05 2015 . 20:20 +
Jorjorych ? ( !).


Jzayka

Adobe Flash, Sothink SWF Quicker , AS2.

CS6. . - .

: ( ):

1. AS2, 700/400 px

2. 1 : Ctrl +R  > >

3. = =, . .

4. . , ==      : =myPic=

 (375x231, 54Kb)

5. ( ):

 

function takePic()
{
    var picHolder = this.createEmptyMovieClip("picHol", 0);
    var dep = 0;
    var i = 0;
    while (i < picHeight / bSize)
    {
        var k = 0;
        while (k < picWidth / bSize)
        {
            var block = picHolder.createEmptyMovieClip("block" + i + k, dep);
            ++dep;
            with (block)
            {
                attachMovie("myPic", "myPic", 0);
                createEmptyMovieClip("mask", 1);
                mask._x = k * bSize;
                mask._y = i * bSize;
                mask.beginFill(0, 100);
                mask.lineTo(bSize, 0);
                mask.lineTo(bSize, bSize);
                mask.lineTo(0, bSize);
                mask.lineTo(0, 0);
                mask.endFill();
                myPic.setMask(block.mask);
                _x = picWidth - mask._x;
                _y = picHeight - mask._y;
            } // End of with
            block.intervalID = setInterval(blockMover, dep * 200 + 1000, block);
            ++k;
        } // end while
        ++i;
    } // end while
} // End of the function
function blockMover(clip)
{
    clearInterval(clip.intervalID);
    clip.targetX = clip.targetY = 0;
    clip.onEnterFrame = function ()
    {
        this.dist = Math.sqrt(Math.pow(this.targetX - this._x, 2) + Math.pow(this.targetY - this._y, 2));
        if (Math.abs(this.dist) > 1)
        {
            this._x = this._x + (this.targetX - this._x) / 4;
            this._y = this._y + (this.targetY - this._y) / 4;
        }
        else
        {
            this._x = this.targetX;
            this._y = this.targetY;
            delete this.onEnterFrame;
        } // end else if
    };
} // End of the function
var bSize = 100;
this.createEmptyMovieClip("temp", 0);
this.temp.attachMovie("myPic", "myPic", 0);
var picWidth = this.temp.myPic._width;
var picHeight = this.temp.myPic._height;
removeMovieClip (this.temp);
takePic();
onMouseUp = function ()
{
    takePic();
};

 

6. (Ctrl+Enter).


: "".

7. "" ( , ): : > > ( "") > OK.

8. "". (Ctrl+R) 2. .

1 1

9. : "_1" ( > > ) > OK.

10. ( "_1") ""!  . () , 110 px ( , ). .

1 2

11. . ( ) , , ( ) 130 . (+-) .

12. 220 .

13. 130 220 " ".

1 3

14. 130 , "" .

   1 4

15. , 220- :

stop();

16. " 1" , , . , "_1" "_1".  , "" :

1 5

17. . , .


, :

"".

18. : "": > > . "". > OK.

19. 3 - Ctrl+R. .

1 6

20. "_1". 200- . "". 80 px , - . 600- .

21. : 600- . "", Y = -840 ().  200- 600- " ".

1 7

22. " 1!, "_1" "_1!  "_1". "" : X = 740, Y = 365.

1 8

! . . - . - .

 

" ":
1 - "" Adobe Flash.
2 - .. 4
...
36 - Adobe Flash AS3
37 - " "
38 - ? ( !).
39 - !
40 - . Adobe Flash.
...
48 - " "
49 - " "
50 - " "


:  
: 2

: [1] []
   , 05 2015 . 20:57 ()
, . .
   

, 05 2015 . 21:02
__
2- . ...

, 05 2015 . 21:05
, . , . 1 .

, 05 2015 . 21:16
__
, , .

, 05 2015 . 21:31
.
: [1] []
 

:
: 

: ( )

:

  URL