[JS + jquery] ํšจ๊ณผ ๋ฉ”์„œ๋“œ์™€ ์• ๋‹ˆ๋ฉ”์ด์…˜ ๋ฉ”์„œ๋“œ ๊ธฐ์ดˆ ์—ฐ์Šต๋ฌธ์ œ 1, 2

2021. 11. 1. 11:24ใ†HTML + CSS + JS/JS ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ

728x90

* ์—ฐ์Šต๋ฌธ์ œ 1

๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๋ฉด <h1> ๋‚ด์šฉ </h1>์ด ์ ์  ์‚ฌ๋ผ์ง€๋„๋ก 
๊ฒฐ๊ณผ 

<!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

๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๋ฉด 50px์”ฉ ์›€์ง์ด๋„๋ก 

 

<!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