jQuery10 元件選取(html元素+CSS ID)+元件動畫(絕對/相對 增量)

jQuery10 元件選取(html元素+CSS ID)+元件動畫(絕對/相對 增量)

jQuery10 元件選取(html元素+CSS ID)+元件動畫(絕對/相對 增量)

 

資料來源http://www.w3school.com.cn/jquery/index.asp

code2html:http://tohtml.com/

 

<!DOCTYPE html>
<html>
<head>
<title>jQuery 元件選取(html元素+CSS ID)+元件動畫(絕對/相對 增量)</title>
<!--資料來源	http://www.w3school.com.cn/jquery/index.asp-->
<scriptsrc="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
/*HTML+class作為選擇器*/
$("button.animate01").click(function(){
console.log("animate01");
$("div").animate({left:'250px'});//絕對位置
});
$("button.animate02").click(function(){
console.log("animate02");
$("div").animate({
left:'+=500px',//相對位置
opacity:'0.5',
height:'+=50px',
width:'+=50px'
});
});
});
</script>
</head>
<body>
<buttontype="button"class="animate01">animate()-動畫01</button>
<buttontype="button"class="animate02">animate()-動畫02</button>
<divstyle="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>
</body>
</html>

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *