JS picture scale code by specified scale

Source: Internet
Author: User

JS picture by the specified scale code is very practical, we are mainly in the Web page will be seen when the picture is too large, so the proportion of processing, the following code is this function.
<HTML>
<HEAD>
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 ">
<TITLE>onMouseWheel</TITLE>

<SCRIPT>
var count = 10;
function picture ()
{
Count = counting (count);
Resize (count);
return false;
}
function counting (count) {
if (Event.wheeldelta >= 120)
count++;
else if (Event.wheeldelta <=-120)
count--;
return count;
}
function Resize (count) {
OImage.style.zoom = count + ' 0% ';
Ocounter.innertext = count + ' 0% ';
}
</SCRIPT>

</HEAD>
<BODY>
<div align=center>
<span style= "font-weight:bold" >size =
&l T;span id= "Ocounter" style= "color:red;" >100%</span></span>

</div>
</BODY>

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.