-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from thuongtruong1009/JQuery
feat: add lession 03 + 04 + 05 to Jquery lession
- Loading branch information
Showing
3 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Lession 03</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container-fluid"> | ||
<h3 class="text-primary text-center">jQuery Playground</h3> | ||
<div class="row"> | ||
<div class="col-xs-6"> | ||
<h4>#left-well</h4> | ||
<div class="well" id="left-well"> | ||
<button class="btn btn-default target" id="target1">#target1</button> | ||
<button class="btn btn-default target" id="target2">#target2</button> | ||
<button class="btn btn-default target" id="target3">#target3</button> | ||
</div> | ||
</div> | ||
<div class="col-xs-6"> | ||
<h4>#right-well</h4> | ||
<div class="well" id="right-well"> | ||
<button class="btn btn-default target" id="target4">#target4</button> | ||
<button class="btn btn-default target" id="target5">#target5</button> | ||
<button class="btn btn-default target" id="target6">#target6</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
$(document).ready(function() { | ||
$("button").addClass("animated bounce"); | ||
$(".well").addClass("animated shake"); | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Lession 04</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container-fluid"> | ||
<h3 class="text-primary text-center">jQuery Playground</h3> | ||
<div class="row"> | ||
<div class="col-xs-6"> | ||
<h4>#left-well</h4> | ||
<div class="well" id="left-well"> | ||
<button class="btn btn-default target" id="target1">#target1</button> | ||
<button class="btn btn-default target" id="target2">#target2</button> | ||
<button class="btn btn-default target" id="target3">#target3</button> | ||
</div> | ||
</div> | ||
<div class="col-xs-6"> | ||
<h4>#right-well</h4> | ||
<div class="well" id="right-well"> | ||
<button class="btn btn-default target" id="target4">#target4</button> | ||
<button class="btn btn-default target" id="target5">#target5</button> | ||
<button class="btn btn-default target" id="target6">#target6</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
$(document).ready(function() { | ||
$("button").addClass("animated bounce"); | ||
$(".well").addClass("animated shake"); | ||
$("#target3").addClass("animated fadeOut"); | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Lession 05</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container-fluid"> | ||
<h3 class="text-primary text-center">jQuery Playground</h3> | ||
<div class="row"> | ||
<div class="col-xs-6"> | ||
<h4>#left-well</h4> | ||
<div class="well" id="left-well"> | ||
<button class="btn btn-default target" id="target1">#target1</button> | ||
<button class="btn btn-default target" id="target2">#target2</button> | ||
<button class="btn btn-default target" id="target3">#target3</button> | ||
</div> | ||
</div> | ||
<div class="col-xs-6"> | ||
<h4>#right-well</h4> | ||
<div class="well" id="right-well"> | ||
<button class="btn btn-default target" id="target4">#target4</button> | ||
<button class="btn btn-default target" id="target5">#target5</button> | ||
<button class="btn btn-default target" id="target6">#target6</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
$(document).ready(function() { | ||
|
||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |