码迷,mamicode.com
首页 > Web开发 > 详细

jquery之往一个CSS属性里写入多个值

时间:2014-10-29 18:36:21      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   java   for   sp   div   on   

 1 <html>
 2 <head>
 3 <title>test</title>
 4 <base href="<%=basePath%>">
 5 <script type="text/javascript" src="javascript/jquery-1.7.min.js"></script>
 6 <style type="text/css">
 7     div{
 8         width: 329px;
 9         height:245px;
10         background: green;
11     }
12 </style>
13 
14 <script type="text/javascript">
15     $(function(){
16         window.setTimeout(function(){
17             $("#testDiv").css("transform","scale(0.5,0.7)");
18         },500);
19         window.setTimeout(function(){
20             $("#testDiv").css("transform",$("#testDiv").css("transform") + " translate(-150px,-50px)");
21         },1000);
22         window.setTimeout(function(){
23             $("#testDiv").css("transform",$("#testDiv").css("transform") + " rotate(50deg)");
24         },1500);
25     });
26 </script>
27 </head>
28 <body>
29     <div id="testDiv" >
30         <img alt="" src="image/di-11.png">
31     </div>
32 </body>
33 </html>

 

jquery之往一个CSS属性里写入多个值

标签:style   blog   io   color   java   for   sp   div   on   

原文地址:http://www.cnblogs.com/yangzhilong/p/4059907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!