css3中的zoom屬性以及jquery中css()方法操作元素的屬性
css3中的zoom設定元素縮放比例;
例如ydi
{
width:300px;
height:300px;
zoom:5
}
元素放大到五倍,再用jquery的方法取得元素的width,height時,$("div").width()或$("div").height()時元素的屬性width,height還是300px;
另外$("div").css({width:'+100px;',height:'+100px'}) 和$("div").animate({left:'+100px'})(zoom:xx的值不能為負值可以為相對值)在設定css的屬性值時可以使用相對值。
這樣就可以設子一個按鈕來一直放大與元素,也可以設定一個按鈕來一直縮小元素。
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
</script>
<style>
#div1
{
display:block;
width:300px;
height:300px;
background-color:red;
}
</style>
<script>
$(document).ready(function(e) {
$("#btn").click(
function()
{
var txt="width:"+$("#div1").width();
txt+="<br/>"+"height:"+$("#div1").height();
$("#div2").html(txt);
}
);
$("#btn2").click(
function()
{
$("#div1").css({zoom:2});
}
);
$("#btn3").click(
function()
{
$("img").css({width:"+=100px",height:"+=80px"});
}
);
$("#btn4").click(
function()
{
$("img").css({width:"-=50%",height:"-=30%"});
}
);
$("#btn5").click(
function()
{
$("img").css({zoom:'+=2
'});
}
)
});
</script>
</head>
<body>
<div id="div1">i am libo</div>
<input type="button" id="btn" value="點選"> <input type="button" id="btn2" value="設定">
<input type="button" id="btn3" value="放大"> <input type="button" id="btn4" value="縮小">
<input type="button" id="btn5" value="設定zoom">
<div id="div2"></div>
<dl>
<dt>中國城市</dt>
<dd><img src="maID.jpg" width="100px" height="100px"><dd>
相關文章
- css3中的animation屬性CSSS3
- CSS zoom屬性用法CSSOOM
- jQuery使用css()方法設定元素的display屬性值jQueryCSS
- css3中transition屬性詳解CSSS3
- Css 中的position屬性CSS
- css中的display屬性CSS
- CSS中的margin屬性CSS
- css3屬性CSSS3
- CSS3的background屬性CSSS3
- css3的新屬性CSSS3
- CSS3的動畫屬性CSSS3動畫
- CSS3常用屬性CSSS3
- css3核心屬性CSSS3
- CSS3 filter屬性CSSS3Filter
- CSS3 transition 屬性CSSS3
- CSS3 transform 屬性CSSS3ORM
- CSS3 initial 屬性CSSS3
- 淺談CSS3中display屬性的Flex佈局CSSS3Flex
- HTML5中CSS3的屬性選擇器HTMLCSSS3
- jQuery如何修改元素的屬性jQuery
- css屬性與js中style物件的屬性對應表CSSJS物件
- CSS中content屬性的妙用CSS
- 淺談CSS3中display屬性的Flex佈局(轉)CSSS3Flex
- jQuery中判斷input的disabled屬性jQuery
- css3新增屬性APICSSS3API
- jQuery如何設定元素的屬性值jQuery
- jquery改變元素屬性值jQuery
- 深入理解css中的margin屬性CSS
- CSS中屬性的書寫順序CSS
- css匹配具有指定屬性值的元素CSS
- Swift 中的屬性Swift
- css的屬性CSS
- JQuery屬性與樣式——樣式操作.css()和元素資料的儲存.data()jQueryCSS
- CSS3的content屬性詳解CSSS3
- jQuery知識總結之元素屬性與樣式的操作jQuery
- jquery設定和獲取元素的屬性jQuery
- css3新增哪些背景屬性CSSS3
- css3 box-orient 屬性CSSS3