最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

zoom Attribute | zoom Property

Internet Development Index

Sets or retrieves the magnification scale of the object.

Syntax

HTML { zoom : vMagnification }
Scriptingobject.style.zoom [ = vMagnification ]

Possible Values

vMagnificationVariant that specifies or receives one of the following values.
normalDefault. Magnification scale is normal. The object renders normal size.
numberFloating-point number that specifies the magnification scale, where 1.0 is normal.
percentageInteger, followed by a %. The value is a percentage of the magnification scale, where 100% is normal.

The property is read/write for all objects except the following, for which it is read-only: currentStyle. The property has a default value of normal. The Microsoft Cascading Style Sheets (CSS) extension is not inherited.

Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see About Dynamic Properties.

Remarks

Setting the value of the zoom property on a rendered object causes the content that surrounds the object to reflow.

Even though the zoom property is not inherited, it affects its children. This effect is similar to the transformation caused by the background and filter properties.

Examples

The following examples use the zoom attribute and the zoom property to change the magnification scale of a p element.

This example uses a style rule in an embedded style sheet to set the zoom attribute to one-tenth of normal.

<STYLE>
.clsTeenyWeeny  { zoom: 0.10 }
</STYLE>

This example uses inline scripting to set the zoom property to 200% when an onmouseover event occurs. The magnification scale returns to normal when the onmouseout event occurs.

<P onmouseover="this.style.zoom='200%'"
onmouseout="this.style.zoom='normal'">

This example provides controls that let the user adjust the zoom property.

<HTML XMLNS:CONTROL>
<HEAD>
<TITLE>Zoom Demo</TITLE>
<SCRIPT>
function zoomIn() {
newZoom= parseInt(oZoom.style.zoom)+10+'%'
oZoom.style.zoom =newZoom;
oCode.innerText='zoom: '+newZoom+'';
}
function zoomOut() {
newZoom= parseInt(oZoom.style.zoom)-10+'%'
oZoom.style.zoom =newZoom;
oCode.innerText='zoom: '+newZoom+'';
}
function changeZoom() {
newZoom= parseInt(oSlider.value)
oZoom.style.zoom=newZoom+'%';
oCode.innerText='zoom: '+newZoom+'%';
}
function changeZoom2(oSel) {
newZoom= oSel.options[oSel.selectedIndex].innerText
oZoom.style.zoom=newZoom;
oCode.innerText='zoom: '+newZoom+'';
}
</SCRIPT>
</HEAD>
<BODY onload="oZoom.style.zoom='100%';
oCode.innerText='zoom: 100%'; " >
<!-- Slider and + and - controls;;;;  -->
<DIV STYLE="position:absolute; top:15; left:20;">
<FORM>
<CONTROL:SLIDER ID="oSlider" STYLE="sl--orientation:vertical;
height:204px; width:28px; background-color:#336699;
padding-left:5px; border-left:1px solid #6699CC" TICKINTERVAL="10"
MAX="200" MIN="0" onchange="changeZoom()"> </CONTROL:SLIDER>
</FORM>
</DIV>
<DIV STYLE="position:absolute; top:15; left:48; width:28px; height:200px;
background-color:#336699;" ALIGN="center">
<IMG  SRC="../common/zoomscale.gif" BORDER="0" USEMAP="#scaler">
</DIV>
<!-- The zoomable area container -->
<DIV STYLE="position:absolute; top:15; left:76; width:550px;
height:204px; background-color:black; vertical-align: middle;
padding:25px; font-family:arial; font-weight:bold; color:white;
z-index:3"  ALIGN="center">
<!-- The zoomable area -->
<DIV ID="oZoom" STYLE="zoom:100%" ALIGN="center">
<H1>Welcome to Seattle!</H1>
<IMG SRC="../common/seattlesmall.jpg" ALIGN="left">
<P ALIGN="center">A great city in the beautiful state of Washington.</P>
</DIV></DIV>
<!-- Displayed code -->
<DIV STYLE="overflow:hidden; border:1px solid black; position:absolute;
top:219; left:20; width:606px; height:90px; padding:1px;
padding-left:25px; background-color:white; z-index:3;">
<SPAN>&lt;DIV style="</SPAN>
<SPAN STYLE="font-weight:bold; font-family:verdana; color:red;
font-size:9pt" CLASS="coder" ID="oCode"></SPAN>
<SPAN>"&gt;</SPAN>
<DIV>&lt;H1&gt; Welcome to seattle!&lt;/H1&gt;</DIV>
<DIV>&lt;IMG SRC="seattlesmall.jpg"&gt;</DIV>
<DIV>&lt;P&gt;A great city in the beautiful state
of Washington.&lt;/P&gt;</DIV><DIV CLASS="coder">&lt;/DIV&gt;</DIV>
</DIV></DIV>
<DIV ID="oControls" STYLE="position:absolute; top:308; left:20;
width:606px; height:100px; background-color:gray; color:white;
font-family:verdana; font-size:11; font-weight:normal;
padding:10px; z-index:3; text-align:center; border:1px solid black;
text-align:left;">
<DIV STYLE="padding-left:65px">
The code used to generate the image is shown in the area above.
<BR><BR>
Modify the image using the selections below or the <BR>
slider control above and to the left of this window.
</DIV><HR>
<DIV ALIGN=CENTER>
<SELECT ID="percent" onchange="changeZoom2(percent); ">
<OPTION SELECTED>Use Percentage Value</OPTION>
<OPTION>10%</OPTION>
<OPTION>25%</OPTION>
<OPTION>50%</OPTION>
<OPTION>75%</OPTION>
<OPTION>100%</OPTION>
<OPTION>150%</OPTION>
<OPTION>200%</OPTION>
</SELECT>
<SELECT ID="normal" onchange="changeZoom2(normal); ">
<OPTION SELECTED>Use Number Value</OPTION>
<OPTION>.1</OPTION>
<OPTION>0.25</OPTION>
<OPTION>0.5</OPTION>
<OPTION>0.75</OPTION>
<OPTION>1.0</OPTION>
<OPTION>1.5</OPTION>
<OPTION>2.0</OPTION>
</SELECT><HR>
</DIV></DIV>
<MAP NAME="scaler">
<AREA SHAPE="rect" COORDS="0,182,19,199" ALT="plus" HREF="#"
onclick="zoomIn()" STYLE="cursor:hand">
<AREA SHAPE="rect" COORDS="1,1,18,15" ALT="minus" HREF="#"
onclick="zoomOut()">
</MAP>
</BODY>
</HTML>
This feature requires Microsoft® Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.

Standards Information

This property is a Microsoft extension to Cascading Style Sheets (CSS) Non-Microsoft link.

Applies To

A, ACRONYM, ADDRESS, APPLET, B, BDO, BIG, BLOCKQUOTE, BODY, BUTTON, CAPTION, CENTER, CITE, CODE, COL, COLGROUP, currentStyle, CUSTOM, DD, DEL, DFN, DIR, DIV, DL, DT, EM, EMBED, FIELDSET, FONT, FORM, FRAME, FRAMESET, HEAD, hn, HR, I, IFRAME, IMG, INPUT, INPUT type=button, INPUT type=checkbox, INPUT type=file, INPUT type=hidden, INPUT type=image, INPUT type=password, INPUT type=radio, INPUT type=reset, INPUT type=submit, INPUT type=text, INS, ISINDEX, KBD, LABEL, LAYOUTRECT, LEGEND, LI, LISTING, MARQUEE, MENU, NOBR, NOFRAMES, NOSCRIPT, OBJECT, OL, OPTION, P, PLAINTEXT, PRE, Q, RT, RUBY, runtimeStyle, S, SAMP, SELECT, SMALL, SPAN, STRIKE, STRONG, style, SUB, SUP, TABLE, TBODY, TD, TEXTAREA, TFOOT, TH, THEAD, TR, TT, U, UL, VAR, XMP
丰原市| 邯郸市| 台中市| 吉安市| 长汀县| 定襄县| 汶川县| 邮箱| 浏阳市| 繁峙县| 临邑县| 美姑县| 达孜县| 延川县| 彭泽县| 珲春市| 溆浦县| 当阳市| 琼中| 河北省| 双鸭山市| 大厂| 阳新县| 永修县| 扎鲁特旗| 涿鹿县| 阿合奇县| 霍林郭勒市| 昌都县| 宁化县| 孟连| 墨竹工卡县| 灵石县| 临沧市| 通化市| 惠水县| 土默特左旗| 固安县| 浙江省| 德昌县| 云龙县|