UNPKG

go-captcha-svelte

Version:

GoCaptcha for Svelte, which implements click mode, slider mode, drag-drop mode and rotation mode.

26 lines (25 loc) 485 B
/** * @Author Awen * @Date 2024/06/01 * @Email wengaolng@gmail.com **/ export const defaultConfig = () => ({ width: 300, height: 220, thumbWidth: 150, thumbHeight: 40, verticalPadding: 16, horizontalPadding: 12, showTheme: true, title: "请拖动滑块完成拼图", iconSize: 22, scope: true, }); export const defaultSlideData = () => ({ thumbX: 0, thumbY: 0, thumbWidth: 0, thumbHeight: 0, image: '', thumb: '' });