Another random rant based on current app usage: Landscape modes are usually as well done as dark modes (meaning: not well at all). You can't just take the whole UI, rotate it 90 degrees and call it a day.
What’s with the suboptimal #LandscapeMode on tablet, #Husky? If you’re going to let me rotate the screen, you should expand to fill it (ideally), or let me zoom it manually. Just using the middle sixty percent isn’t ideal. You do okay on a phone, even if I’d really like to turn the timeline bar into a floating menu button instead of wasting all that space.
#caturday , in which Cece obliges by conforming to Mastadon’s unconventional 9x16 aspect ratio.
#StuffAlcea #js #javascript
#website #CodeAlcea
Instead of trying to #force people in #landscapemode - which is pretty much #impossible
(https://www.youtube.com/watch?v=Q7LtMTSZGGM https://stackoverflow.com/questions/8738072/forcing-web-site-to-show-in-landscape-mode-only )
I just implemented a #popup that tosses ppl back if in #portrait...
<script>
if(window.innerHeight > window.innerWidth){
alert("横(yoko)! - Please switch to Landscape mode")
window.history.back()
window.close()
}
</script>