forked from Padukuhan-Ngrombo/ngrombo
-
Notifications
You must be signed in to change notification settings - Fork 0
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 Padukuhan-Ngrombo#18 from Fredo-Ronan/main
add welcome text to galeri page
- Loading branch information
Showing
3 changed files
with
32 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,5 @@ | ||
/* | ||
File ini berisi text yang di tampilkan setelah tulisan SELAMAT DATANG di awal website | ||
*/ | ||
|
||
const welcome_galeri = `Beberapa Foto dan Video kegiatan yang biasa di lakukan di Dusun Ngrombo`; |
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,25 @@ | ||
/* | ||
File ini isinya adalah script untuk generate content website nya secara otomatis | ||
File ini tidak perlu di edit2, temen2 hanya perlu fokus ke file2 yang ada di dalam folder data | ||
*/ | ||
|
||
|
||
// Welcome Side | ||
const welcomeDiv = document.getElementById("welcome"); | ||
|
||
const h2Welcome = document.createElement("h2"); | ||
h2Welcome.innerHTML = welcome_galeri; | ||
|
||
const aAboutScrollTo = document.createElement("a"); | ||
aAboutScrollTo.className = "btn-get-started scrollto" | ||
aAboutScrollTo.href = "#video-container"; | ||
|
||
const iScrollTo = document.createElement("i"); | ||
iScrollTo.className = "bx bx-chevrons-down"; | ||
|
||
aAboutScrollTo.appendChild(iScrollTo); | ||
|
||
welcomeDiv.appendChild(h2Welcome); | ||
// welcomeDiv.appendChild(aAboutScrollTo); | ||
// End Of Welcome Side |
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