Úprava souboru index.html
This commit is contained in:
parent
24eeabddf8
commit
f6b321eb34
1 changed files with 15 additions and 0 deletions
15
README.md
15
README.md
|
@ -1,3 +1,18 @@
|
|||
<script>
|
||||
function isMobile() {
|
||||
const regex = /Mobi|Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i;
|
||||
return regex.test(navigator.userAgent);
|
||||
}
|
||||
|
||||
if (isMobile()) {
|
||||
console.log("Detekováno mobilní zařízení");
|
||||
document.write("<style>.sloupce{column-count:1;column-width:100px;column-rule-width:10px;}</style>");
|
||||
} else {
|
||||
console.log("Detekován počítač");
|
||||
document.write("<style>.sloupce{column-count:2;column-width:100px;column-rule-width:10px;}</style>");
|
||||
}
|
||||
</script>
|
||||
<p class="sloupce">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
|
||||
# ![alt text](/images/alien.svg) AREA - 51
|
||||
Tento projekt zahrnuje vývoj statických internetových stránek, umístěných na serveru **Gitea** / **Forgejo** / **Codeberg**, pojednávající o mých soukromých aktivitách z oblasti webové tvorby, pořádání akcí, filmové tvorby, i grafických prací. Tento web hostuji zcela mimo mé servery, a to záměrně:
|
||||
- jednak proto, že mé servery mám umístěné doma a nejsou 100%...
|
||||
|
|
Loading…
Add table
Reference in a new issue