How to dynamically change the layer size using javascript

Source: Internet
Author: User

How to dynamically change the layer size using javascript

This example describes how to dynamically change the layer size in javascript. Share it with you for your reference. The specific implementation method is as follows:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

<Html xmlns = "http://www.w3.org/1999/xhtml">

<Head>

<Meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8"/>

<Title> dynamically set the layer size </title>

<Style type = "text/css">

. DivMain

{

Width: 10px;

Height: 100px;

Border-style: solid;

Border-width: 1px;

Border-color: Green;

Display: none;

}

</Style>

<Script type = "text/javascript">

Var setIntervalID;

Function ZoomDiv (){

Var divMain = document. getElementById ("divMain ");

DivMain. style. width = "200px ";

DivMain. style. height = "200px ";

}

Function ShowDiv (){

SetIntervalID = setInterval ("inc ()", 100 );

}

Function inc (){

Var divMain = document. getElementById ("divMain2 ");

// Class cannot be set for div; otherwise, the time-space value obtained by divMain. style. width is used.

// You can only set style = "width: 10px; height: 100px" in the element"

Var oldWidth = divMain. style. width;

Var oldHeight = divMain. style. height;

OldWidth = parseInt (oldWidth );

OldHeight = parseInt (oldHeight );

OldWidth + = 1;

OldHeight + = 1;

If (oldWidth & gt; = 200 ){

// Clear the timer

ClearInterval (setIntervalID );

Return;

}

DivMain. style. width = oldWidth + "px ";

DivMain. style. height = oldHeight + "px ";

}

</Script>

</Head>

<Body>

<Input type = "button" value = "amplification layer" onclick = "ZoomDiv ()"/>

<Input type = "button" value = "dynamic amplification layer" onclick = "ShowDiv ()"/>

<Div id = "divMain" class = "divMain">

Case: Images flying with the mouse. Tip: When the mouse moves an event, onmousemove

The clientX and clientY attributes of window. event get the cursor position.

</Div>

<! -- The class cannot be set here; otherwise, the time and space of the value obtained using divMain. style. width -->

<Div id = "divMain2" style = "width: 10px; height: 100px; background-color: Red;">

Case: Images flying with the mouse. Tip: When the mouse moves an event, onmousemove

The clientX and clientY attributes of window. event get the cursor position.

</Div>

</Body>

</Html>

I hope this article will help you design javascript programs.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.