mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
add read more
option to song's about section
This commit is contained in:
parent
9325639b13
commit
f5288a0e1d
4 changed files with 30 additions and 5 deletions
|
@ -1,7 +1,18 @@
|
|||
const fullAbout = document.querySelector("#about #full_about")
|
||||
const summary = document.querySelector("#about #summary")
|
||||
|
||||
function showAbout() {
|
||||
summary.classList.toggle("hidden")
|
||||
fullAbout.classList.toggle("hidden")
|
||||
}
|
||||
|
||||
[fullAbout, summary].forEach(item => item.onclick = showAbout)
|
||||
|
||||
document.querySelectorAll("#lyrics a").forEach(item => {
|
||||
item.addEventListener("click", getAnnotation)
|
||||
})
|
||||
|
||||
function getAnnotation(e) {
|
||||
e.preventDefault()
|
||||
console.log(e.target.parentElement.getAttribute("href"))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue