Code for controlling the image size on the webpage

Source: Internet
Author: User

1. Drag the mouse to change the size. <script language = "JavaScript">
Function resizeImage (evt, obj ){
NewX = evt. x
NewY = evt. y
Obj. width = newX
Obj. height = newY
}
</Script>

2. Scroll the mouse to control the image size
3. Use the code in the image label to control the size screen. width-500) this. style. width = screen. width-500; "> you need to modify the size after testing. Otherwise, the original size is displayed when the page is refreshed. screen. width-500) this. resized = true; this. style. width = screen. width-500; ">
4. CSS controls the image size
1. css2 direct implementation: img {max-width: 500px;} (not supported by IE currently)
2. expression implementation: img {width: expression (width> 500? "500px": width);} (IE only)
3. Use js. Method: Use document. getElementsByTagName ("IMG") to retrieve all img elements, traverse img elements, determine their width, and perform corresponding operations.

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.