events/2024-11-21-front-end-study-hall
Front End Study Hall #015 was an IndieWeb meetup on Zoom held on 2024-11-21.
Front End Study Hall #015
November 21, 2024
Participants
Notes
Happy Thursday, everyone :)
- https://codepen.io/artlung/pen/RwXmXYw a Codepen showing a
input type="radio"
button to set state for a layout andhas()
to read the radio button - https://artlung.com/ uses that technique to do hamburger-style sidebars
- Joe uses the
transform()
function to display his sidebar, it starts at -100% (outside the viewport) and scaled down to 10% of the size, and then slides into view as it grows.- We changed the
transition
from .5s(?) to 12s to see it go slower (and it looked similar to the old MacOS genie effect!) - On the topic of accessibility of menus and sidebars, Jira shows a popup on the top left corner when you're tabbing through the page to allow users to switch between areas of the screen: https://ibb.co/qjjt9Rn
- We changed the
- Joe uses the
Trying to recreate the steps in https://www.gov.uk/learn-to-drive-a-car
- Reference Markup:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h1>How to make a website</h1> <ol> <li><h2>Register a domain</h2><p>like namecheap</p></li> <li><h2>Choose a hosting service</h2><p>like wordpress</p></li> <li><h2>Share with friends</h2><p>like on Mastodon</p></li> </ol> </body> </html>
- Further reading: