| | |
| | | <style> |
| | | |
| | | #headerimg { |
| | | background-image: url(/ticky_tacky_dark/img/header01.jpg); |
| | | background-image: url(https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg); |
| | | background-size: cover; |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | function randomHeaderImg() { |
| | | images = ["/ticky_tacky_dark/img/header01.jpg","/ticky_tacky_dark/img/header02.jpg"]; |
| | | images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg","https://kc0bfv.github.io/ticky_tacky_dark/img/header02.jpg"]; |
| | | i = Math.ceil(Math.random() * images.length) - 1; |
| | | document.getElementById("headerimg").src = images[i]; |
| | | } |