Skip to content

Commit 895192f

Browse files
author
Manohar Negi
committed
added js snippets
1 parent c369b49 commit 895192f

File tree

116 files changed

+286
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+286
-1
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

css/pseudo-class.html 2-css/15-pseudo-class/pseudo-class.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
/* mouse over link */
1616
a:hover {
17-
color: hotpink;
17+
color: green;
1818
}
1919

2020
/* selected link */
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

css/notes 2-css/notes

File renamed without changes.

3-js/01-hello-world/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>JS Intro</title>
5+
6+
</head>
7+
<body>
8+
<h1>Header 1</h1>
9+
<div></div>
10+
<button>Say Hello!</button>
11+
<script src="main.js"></script>
12+
</body>
13+
</html>

3-js/01-hello-world/main.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// we declare a variable using the var keyword
2+
// myHeading will have a reference to h1 (the first h1)
3+
var myHeading = document.querySelector('h1');
4+
// we set the text content of h1 as 'Hello world! Welcome to JS'
5+
myHeading.textContent = 'Hello world! Welcome to JS';
6+
7+
var myDiv = document.querySelector('div');
8+
// we can also set the html content using innerHtml
9+
myDiv.innerHTML = '<p style="color: red;">Welcome to JavaScript</p>';
10+
11+
// we declare another variable called myBtn
12+
// myBtn will have a reference to button element
13+
var myBtn = document.querySelector('button');
14+
// we are going to add an event handler
15+
// onclick is the event and to that we are assigning an anonymous function
16+
// every time you click the button, this function will be called
17+
// and it will show an alert box with 'Hello World'
18+
myBtn.onclick = function(){
19+
alert("Hello World!");
20+
}

3-js/02-image-changer/index.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<title>Image Changer</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
</head>
9+
<body>
10+
<h1>Click on the below image to change it</h1>
11+
<img src="images/thruskills-mean-stack.jpg" alt="MEAN Stack course at ThruSkills">
12+
13+
<script src="js/main.js"></script>
14+
</body>
15+
</html>

3-js/02-image-changer/js/main.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Image changer
2+
3+
var myImage = document.querySelector('img');
4+
5+
myImage.onclick = function() {
6+
var mySrc = myImage.getAttribute('src');
7+
if(mySrc === 'images/thruskills-node-js.jpg') {
8+
myImage.setAttribute ('src','images/thruskills-mean-stack.jpg');
9+
} else {
10+
myImage.setAttribute ('src','images/thruskills-node-js.jpg');
11+
}
12+
}

3-js/03-greet-user/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<title>Greet Me</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
9+
10+
</head>
11+
<body>
12+
<h1>Hi! </h1>
13+
<button>Set My Name</button>
14+
<script src="js/main.js"></script>
15+
</body>
16+
</html>

3-js/03-greet-user/js/main.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Personalized welcome message code
2+
var myButton = document.querySelector('button');
3+
var myHeading = document.querySelector('h1');
4+
5+
function setUserName() {
6+
var myName = prompt('Please enter your name.');
7+
localStorage.setItem('name', myName);
8+
myHeading.innerHTML = '<p>Welcome, ' + myName + '</p>';
9+
//myHeading.textContent = '<p>Welcome, ' + myName + '</p>';
10+
}
11+
12+
if(!localStorage.getItem('name')) {
13+
setUserName();
14+
} else {
15+
var storedName = localStorage.getItem('name');
16+
myHeading.innerHTML = 'Welcome, ' + storedName;
17+
}
18+
19+
myButton.onclick = function() {
20+
setUserName();
21+
}

3-js/04-player-name/css/style.css

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
p {
2+
font-family: 'helvetica neue', helvetica, sans-serif;
3+
letter-spacing: 1px;
4+
text-transform: uppercase;
5+
text-align: center;
6+
border: 2px solid rgba(0,0,200,0.6);
7+
background: rgba(0,0,200,0.3);
8+
color: rgba(0,0,200,0.6);
9+
box-shadow: 1px 1px 2px rgba(0,0,200,0.4);
10+
border-radius: 10px;
11+
padding: 3px 10px;
12+
display: inline-block;
13+
cursor: pointer;
14+
}

3-js/04-player-name/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>JavaScript label example</title>
6+
<link rel="stylesheet" type="text/css" href="css/style.css">
7+
</head>
8+
<body>
9+
<p>Player 1: Manohar</p>
10+
11+
<script src="js/main.js"></script>
12+
</body>
13+
</html>

3-js/04-player-name/js/main.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var para = document.querySelector('p');
2+
3+
para.addEventListener('click', updateName);
4+
// also try out other events like mouseover
5+
function updateName() {
6+
var name = prompt('Enter a new name');
7+
para.textContent = 'Player 1: ' + name;
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
html {
2+
font-family: sans-serif;
3+
}
4+
body {
5+
width: 50%;
6+
max-width: 800px;
7+
min-width: 480px;
8+
margin: 0 auto;
9+
}
10+
.lastResult {
11+
color: white;
12+
padding: 3px;
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Number guessing game</title>
6+
<link href="css/style.css" rel="stylesheet" type="text/css">
7+
</head>
8+
9+
<body>
10+
<h1>Number guessing game</h1>
11+
<p>We have selected a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.</p>
12+
<div class="form">
13+
<label for="guessField">Enter a guess: </label>
14+
<input type="text" id="guessField" class="guessField">
15+
<input type="submit" value="Submit guess" class="guessSubmit">
16+
</div>
17+
18+
<div class="resultParas">
19+
<p class="guesses"></p>
20+
<p class="lastResult"></p>
21+
<p class="lowOrHi"></p>
22+
</div>
23+
24+
<script src="js/main.js"></script>
25+
</body>
26+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
// Your JavaScript goes here
2+
var n = Math.random();
3+
console.log(n * 100);
4+
console.log((Math.floor(n * 100)));
5+
6+
var randomNumber = Math.floor(Math.random() * 100) + 1;
7+
var guesses = document.querySelector('.guesses');
8+
var lastResult = document.querySelector('.lastResult');
9+
var lowOrHi = document.querySelector('.lowOrHi');
10+
var guessSubmit = document.querySelector('.guessSubmit');
11+
var guessField = document.querySelector('.guessField');
12+
13+
var guessCount = 1;
14+
var resetButton;
15+
guessField.focus();
16+
function checkGuess() {
17+
var userGuess = Number(guessField.value);
18+
if (guessCount === 1) {
19+
guesses.textContent = 'Previous guesses: ';
20+
}
21+
guesses.textContent += userGuess + ' ';
22+
if (userGuess === randomNumber) {
23+
lastResult.textContent = 'Congratulations! You got it right!';
24+
lastResult.style.backgroundColor = 'green';
25+
lowOrHi.textContent = '';
26+
setGameOver();
27+
} else if (guessCount === 10) {
28+
lastResult.textContent = '!!!GAME OVER!!!';
29+
lowOrHi.textContent = '';
30+
setGameOver();
31+
} else {
32+
lastResult.textContent = 'Wrong!';
33+
lastResult.style.backgroundColor = 'red';
34+
if (userGuess < randomNumber) {
35+
lowOrHi.textContent = 'Last guess was too low!';
36+
} else if (userGuess > randomNumber) {
37+
lowOrHi.textContent = 'Last guess was too high!';
38+
}
39+
}
40+
guessCount++;
41+
guessField.value = '';
42+
guessField.focus();
43+
}
44+
guessSubmit.addEventListener('click', checkGuess);
45+
function setGameOver() {
46+
guessField.disabled = true;
47+
guessSubmit.disabled = true;
48+
resetButton = document.createElement('button');
49+
resetButton.textContent = 'Start new game';
50+
document.body.appendChild(resetButton);
51+
resetButton.addEventListener('click', resetGame);
52+
}
53+
function resetGame() {
54+
guessCount = 1;
55+
var resetParas = document.querySelectorAll('.resultParas p');
56+
for (var i = 0; i < resetParas.length; i++) {
57+
resetParas[i].textContent = '';
58+
}
59+
resetButton.parentNode.removeChild(resetButton);
60+
guessField.disabled = false;
61+
guessSubmit.disabled = false;
62+
guessField.value = '';
63+
guessField.focus();
64+
lastResult.style.backgroundColor = 'white';
65+
randomNumber = Math.floor(Math.random() * 100) + 1;
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Number guessing game</title>
6+
<style>
7+
html {
8+
font-family: sans-serif;
9+
}
10+
11+
body {
12+
width: 50%;
13+
max-width: 800px;
14+
min-width: 480px;
15+
margin: 0 auto;
16+
}
17+
18+
.lastResult {
19+
color: white;
20+
padding: 3px;
21+
}
22+
</style>
23+
</head>
24+
25+
<body>
26+
<h1>Number guessing game</h1>
27+
28+
<p>We have selected a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your
29+
guess was too high or too low.</p>
30+
31+
<div class="form">
32+
<label for="guessField">Enter a guess: </label>
33+
<input type="text" id="guessField" class="guessField">
34+
<input type="submit" value="Submit guess" class="guessSubmit">
35+
</div>
36+
37+
<div class="resultParas">
38+
<p class="guesses"></p>
39+
<p class="lastResult"></p>
40+
<p class="lowOrHi"></p>
41+
</div>
42+
43+
<script>
44+
// Your JavaScript goes here
45+
</script>
46+
</body>
47+
48+
</html>

0 commit comments

Comments
 (0)