close
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
	<style type="text/css">
		#content{
			width: 100px;
			height: 100px;
			background-color: cadetblue;
			transition: 0.5s;
			margin-left: 20px;
			margin-bottom: 10px;
		}
	</style>
</head>
<body>
	<div id="content"></div>
	<button id="wider">變大</button>
	<button id="goright">往右</button>
	<script type="text/javascript">
		$('#wider').click(function(){
			$('#content').css({
				'width':'200px',
				'height':'200px'
			});
		});
		$('#goright').click(function(){
			$('#content').css('margin-left','+=50')
		});
	</script>
</body>
</html>
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Jerry 的頭像
    Jerry

    Bug倉庫 // 程式日記

    Jerry 發表在 痞客邦 留言(0) 人氣()