Merge branch 'main' of https://github.com/geokkjer/startit
This commit is contained in:
commit
f072b9146e
|
@ -76,7 +76,7 @@
|
||||||
function showNumber1() {
|
function showNumber1() {
|
||||||
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
||||||
<button onclick="showNumber4()">◀</button>
|
<button onclick="showNumber4()">◀</button>
|
||||||
<div style="width: 200px; text-align: center;">
|
<div>
|
||||||
<img src="img/head1.png">
|
<img src="img/head1.png">
|
||||||
</div>
|
</div>
|
||||||
<button onclick="showNumber2()">▶</button>
|
<button onclick="showNumber2()">▶</button>
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
function showNumber2() {
|
function showNumber2() {
|
||||||
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
||||||
<button onclick="showNumber1()">◀</button>
|
<button onclick="showNumber1()">◀</button>
|
||||||
<div style="width: 200px; text-align: center;">
|
<div>
|
||||||
<img src="img/head2.png">
|
<img src="img/head2.png">
|
||||||
</div>
|
</div>
|
||||||
<button onclick="showNumber3()">▶</button>
|
<button onclick="showNumber3()">▶</button>
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
function showNumber3() {
|
function showNumber3() {
|
||||||
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
||||||
<button onclick="showNumber2()">◀</button>
|
<button onclick="showNumber2()">◀</button>
|
||||||
<div style="width: 200px; text-align: center;">'
|
<div>
|
||||||
<img src="img/head3.png">
|
<img src="img/head3.png">
|
||||||
</div>
|
</div>
|
||||||
<button onclick="showNumber4()">▶</button>
|
<button onclick="showNumber4()">▶</button>
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
function showNumber4() {
|
function showNumber4() {
|
||||||
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
document.getElementById('numbersAndButtons').innerHTML = /*HTML*/ `
|
||||||
<button onclick="showNumber3()">◀</button>
|
<button onclick="showNumber3()">◀</button>
|
||||||
<div style="width: 200px; text-align: center;">
|
<div>
|
||||||
<img src="img/head4.png">
|
<img src="img/head4.png">
|
||||||
</div>
|
</div>
|
||||||
<button onclick="showNumber1()">▶</button>
|
<button onclick="showNumber1()">▶</button>
|
||||||
|
|
13
the_good_parts/index.html
Normal file
13
the_good_parts/index.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title></title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
0
the_good_parts/index.html~
Normal file
0
the_good_parts/index.html~
Normal file
4
the_good_parts/script.js
Normal file
4
the_good_parts/script.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
hello();
|
||||||
|
function hello() {
|
||||||
|
console.log('Hello World!');
|
||||||
|
}
|
3
the_good_parts/script.js~
Normal file
3
the_good_parts/script.js~
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
function() {
|
||||||
|
consol
|
||||||
|
}
|
Loading…
Reference in a new issue