added authors clickable shit

This commit is contained in:
Václav Šmejkal 2023-06-02 10:44:54 +02:00
parent 77f7f8fe86
commit a7d3f967a0
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59
2 changed files with 10 additions and 1 deletions

View File

@ -15,6 +15,7 @@
<script src="./res/global.js"></script> <script src="./res/global.js"></script>
<link rel="stylesheet" href="./res/autori/style.css"> <link rel="stylesheet" href="./res/autori/style.css">
<script src="./res/autori/script.js"></script>
</head> </head>
<body> <body>
<button id="back_button" onclick="move('./index.html', true)">&#8701;</button> <button id="back_button" onclick="move('./index.html', true)">&#8701;</button>
@ -28,7 +29,7 @@
</div> </div>
<div id="vasek"> <div id="vasek">
<span class="nadpis">Vašek:</span><br> <span class="nadpis">Vašek:</span><br>
Profesionální sebevrah, kriminálník, vandal.<br> Profesionální <span id="sebedestrukce">sebevrah</span>, kriminálník, vandal.<br>
Autor většiny fotografií, programátor. Autor většiny fotografií, programátor.
</div> </div>
</div> </div>

8
res/autori/script.js Normal file
View File

@ -0,0 +1,8 @@
window.onload = function()
{
document.getElementById("sebedestrukce").onclick = (e) = function()
{
document.getElementById("sebedestrukce").style.color = "#800500";
document.getElementById("sebedestrukce").style.fontWeight = "bold";
}
}