Frontend (Next.js) and Accessibility

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

SSR/SSG/ISR/CSR

render on server now (Server)/ build-time static (Generation) / static with timed refresh (Incremental Static Regen)/ browser-rendered. (Client side)

2
New cards

Hydration

making static HTML interactive.

3
New cards

Virtual DOM

React’s fast in-memory diff of the page.

4
New cards

Bundling / code-splitting / lazy loading

ship less JS and load when needed.

5
New cards

Core Web Vitals

LCP (largest paint), CLS (layout shift), INP (interaction delay).

6
New cards

Combobox

searchable dropdown with keyboard and screen-reader support.

7
New cards

WCAG 2.2 AA

accessibility standard your app meets.

8
New cards

Color contrast

readable text vs background (4.5:1 normal).

9
New cards

Keyboard support

everything works without a mouse.

10
New cards

Focus Appearance / Not Obscured

visible outline; not hidden by headers.

11
New cards

Target Size

tap targets large enough.

12
New cards

Dragging alternative

provide non-drag method.

13
New cards

Redundant Entry

don’t re-ask for info you already have.

14
New cards

Consistent Help

help/links in the same place.

15
New cards

Accessible Authentication

no memory puzzles; magic link is fine.

16
New cards

ARIA / landmarks

roles (dialog, status) and proper tags. Accessibility Rich Internet Apps

17
New cards

Alt text

describe images (or alt="" if decorative).