rearranges files and adds contact bar
This commit is contained in:
parent
75fb2e7094
commit
c28ae8e64a
14 changed files with 192 additions and 45 deletions
13
scripts/contactme.js
Normal file
13
scripts/contactme.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
function toggleContact(button)
|
||||
{
|
||||
if (button.innerHTML == "contact me")
|
||||
{
|
||||
button.innerHTML = "back"
|
||||
document.getElementById("contactBar").style = "font-size: 1rem;"
|
||||
}
|
||||
else
|
||||
{
|
||||
button.innerHTML = "contact me"
|
||||
document.getElementById("contactBar").style = "font-size: 0;"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue