[JS + jquery] ํจ๊ณผ ๋ฉ์๋์ ์ ๋๋ฉ์ด์
๋ฉ์๋ ๊ธฐ์ด ์ฐ์ต๋ฌธ์ 1, 2
2021. 11. 1. 11:24ใHTML + CSS + JS/JS ์๋ฐ์คํฌ๋ฆฝํธ
728x90
* ์ฐ์ต๋ฌธ์ 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title> new document </title>
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
//<![CDATA[
$(function(){
$("#btn").on("click", function(){
$("h1").fadeOut(1000, "linear");
});
});
//]]>
</script>
</head>
<body>
<button id="btn">๋ฒํผ</button>
<h1>๋ด์ฉ</h1>
</body>
</html>
* ์ฐ์ต๋ฌธ์ 2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title> new document </title>
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
//<![CDATA[
$(function(){
$("#btn").on("click",function(){
$("#ctx").animate({marginLeft : "+=50px"},500);
});
});
//]]>
</script>
<style type="text/css">
*{margin:0; padding:0;}
#ctx{width:50px; height:50px; background:yellow;}
</style>
<body>
<button id="btn">๋ฒํผ</button>
<p id="ctx">๋ด์ฉ</p>
</body>
</html>
728x90