-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 804 Bytes
/
index.html
File metadata and controls
37 lines (31 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery</title>
</head>
<script src="http://www.w3school.com.cn/jquery/jquery-1.11.1.min.js"></script>
<script>
$(function(){
$("#myElementId").width(500);
$("#myElementId").height(200);
$("#myElementId").css("background-color", "red").children().css("background-color", "yellow");
$("#myElementId").animate({
left:'250px',
opacity:'0.5',
height:'150px',
width:'150px'
});
})
</script>
<body>
<div id="myElementId" style="position: absolute">
<h1>我的样式是jQery 写的</h1>
</div>
<!--<script>-->
<!--$(document).ready(function() {-->
<!---->
<!--})-->
<!--</script>-->
</body>
</html>