Example · Themes
Glassmorphic Theme
Modern glass effect with blur and transparency
Glassmorphic Theme
Trendy glassmorphism design with frosted glass effect:
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'glassmorphic' }3});4picker.create();
Glassmorphic with 12h
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'glassmorphic' },3 clock: { type: '12h' }4});5picker.create();
Glassmorphic with 24h
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'glassmorphic' },3 clock: { type: '24h' }4});5picker.create();