From 60398f9cec410c65afa0042b584c2856bcb2d3ea Mon Sep 17 00:00:00 2001 From: huanghanzhilian <1319639755@qq.com> Date: Thu, 22 Feb 2024 20:54:57 +0800 Subject: [PATCH] fix: address link modify --- README.md | 147 +++++++++++++++++++++++----------------- README.zh_CN.md | 135 ++++++++++++++++++++++++++++++++++++ accordion/index.html | 2 +- bannerha/index.html | 2 +- calendar/index.html | 2 +- citys/index.html | 2 +- countdown/index.html | 2 +- dialog/index.html | 2 +- imagezoom/index.html | 2 +- inputFormat/index.html | 2 +- magnifier/index.html | 2 +- public/image/widget.png | Bin 0 -> 5549 bytes scrollbar/index.html | 2 +- scrollup/index.html | 2 +- select/index.html | 2 +- suggestion/index.html | 2 +- tabpanel/index.html | 2 +- tabs/index.html | 2 +- 18 files changed, 235 insertions(+), 77 deletions(-) create mode 100644 README.zh_CN.md create mode 100644 public/image/widget.png diff --git a/README.md b/README.md index 96c1187..55d9abd 100644 --- a/README.md +++ b/README.md @@ -1,109 +1,132 @@ -# web组件 +

+ logo +

+

H-Widget v1.0.0

-- 项目演示(DEMO)地址:http://widget.huanghanlian.com/ +

A component library developed with native JavaScript, including components such as carousel, tab, dropdown, dialog, etc.

+## README.md +- [English](README.md) +- [简体中文](README.zh_CN.md) + +## Project Demo + +**Project Demo:** + +- GitHub Pages Deployment: [http://widget.huanghanlian.com/](http://widget.huanghanlian.com/) + +## Project Introduction + +**Background:** +With the rise of various frameworks nowadays, we seldom think about how native JS works, understanding native JS is also very important~ --- -### 滑动条-原生js封装 -简介:进度及范围控制,支持手势操作,支持移动端+PC -[演示](http://widget.huanghanlian.com/range/) +## How to Use + +### Slider - Native JavaScript Encapsulation +Description: Progress and range control, supports gesture operation, supports mobile and PC +[Demonstration](http://widget.huanghanlian.com/range/) ```javascript -new range("selector",options,callback(api)); +new range("selector", options, callback(api)); ``` -### 滚动条-原生js封装 -简介:模拟滚动条,支持手势操作,支持移动端+PC -[演示](http://widget.huanghanlian.com/scrollbar/) +### Scrollbar - Native JavaScript Encapsulation +Description: Simulated scrollbar, supports gesture operation, supports mobile and PC +[Demonstration](http://widget.huanghanlian.com/scrollbar/) ```javascript -new scrollbar("selector",options,callback(api)); +new scrollbar("selector", options, callback(api)); ``` -### 日历-原生js封装 -简介:日期及日期范围选择,灵活的日期选择功能 -[演示](http://widget.huanghanlian.com/calendar/) +### Calendar - Native JavaScript Encapsulation +Description: Date and date range selection, flexible date selection function +[Demonstration](http://widget.huanghanlian.com/calendar/) ```javascript -new calendar("selector",options); +new calendar("selector", options); ``` -### 无缝轮播图-原生js封装 -简介:无缝滚动、响应式、参数可调控等等 -[演示](http://widget.huanghanlian.com/bannerha/) +### Seamless Carousel - Native JavaScript Encapsulation +Description: Seamless scrolling, responsive, adjustable parameters, etc. +[Demonstration](http://widget.huanghanlian.com/bannerha/) ```javascript -new bannerha(selector,{options}); +new bannerha(selector, { options }); ``` - -### Tab面板-原生js封装 -简介:Tab面板、响应式、参数可调控等等 -[演示](http://widget.huanghanlian.com/tabpanel/) +### Tab Panel - Native JavaScript Encapsulation +Description: Tab panel, responsive, adjustable parameters, etc. +[Demonstration](http://widget.huanghanlian.com/tabpanel/) ```javascript -new tabpanel(selector,{options}); +new tabpanel(selector, { options }); ``` - -### 无缝向上滚动-原生js封装 -简介:无缝滚动、间隔滚动、响应式、参数可调控等等 -[演示](http://widget.huanghanlian.com/scrollup/) +### Seamless Scroll Up - Native JavaScript Encapsulation +Description: Seamless scrolling, interval scrolling, responsive, adjustable parameters, etc. +[Demonstration](http://widget.huanghanlian.com/scrollup/) ```javascript -new scrollup(selector,{options}); +new scrollup(selector, { options }); ``` - - -### 放大镜-原生js封装 -简介:电商放大镜封装、参数可调控等等 -[演示](http://widget.huanghanlian.com/magnifier/) +### Magnifier - Native JavaScript Encapsulation +Description: E-commerce magnifier encapsulation, adjustable parameters, etc. +[Demonstration](http://widget.huanghanlian.com/magnifier/) ```javascript -new magnifier(selector,{options}); +new magnifier(selector, { options }); ``` -### 倒计时-原生js封装 -简介:倒计时、参数可调控等等 -[演示](http://widget.huanghanlian.com/countdown/) +### Countdown - Native JavaScript Encapsulation +Description: Countdown, adjustable parameters, etc. +[Demonstration](http://widget.huanghanlian.com/countdown/) ```javascript -new countdown(selector,{options}); +new countdown(selector, { options }); ``` -### 下拉框-原生js封装 -简介:下拉框、支持键盘事件、参数可调控等等 -[演示](http://widget.huanghanlian.com/select/) +### Dropdown - Native JavaScript Encapsulation +Description: Dropdown, supports keyboard events, adjustable parameters, etc. +[Demonstration](http://widget.huanghanlian.com/select/) ```javascript -new select(selector,{options}); +new select(selector, { options }); ``` -### 标签页-tabs-原生js封装 -简介:简易标签切换及淡入淡出幻灯片功能 -[演示](http://widget.huanghanlian.com/tabs/) +### Tabs - Native JavaScript Encapsulation +Description: Simple tab switching and fade in and out slideshow functions +[Demonstration](http://widget.huanghanlian.com/tabs/) ```javascript -new tabs(selector,{options}); +new tabs(selector, { options }); ``` -### 图片聚焦-imagezoom-原生js封装 -简介:图片居中及缩放处理 -[演示](http://widget.huanghanlian.com/imagezoom/) +### Image Zoom - Native JavaScript Encapsulation +Description: Image centering and scaling processing +[Demonstration](http://widget.huanghanlian.com/imagezoom/) ```javascript -new imagezoom(selector,{options}); +new imagezoom(selector, { options }); ``` -### 弹出框-dialog-原生js封装 -简介:个性弹出层,自定义弹出位置,巧妙的定位方式 -[演示](http://widget.huanghanlian.com/dialog/) +### Dialog - Native JavaScript Encapsulation +Description: Personalized popup layer, custom popup position, clever positioning method +[Demonstration](http://widget.huanghanlian.com/dialog/) ```javascript -new dialog(selector,{options}); +new dialog(selector, { options }); ``` -### 城市三级联动 - citys-原生js封装 -简介:最新最全的城市区划数据,自定义事件处理方式 -[演示](http://widget.huanghanlian.com/citys/) +### City Selector - Native JavaScript Encapsulation +Description: Latest and most complete city subdivision data, custom event handling method +[Demonstration](http://widget.huanghanlian.com/citys/) ```javascript -new citys("selector",options,callback(api)); +new citys("selector", options, callback(api)); ``` -### 格式化输入框-inputFormat-原生js封装 -简介:格式化输入,方便验证 -[演示](http://widget.huanghanlian.com/inputFormat/) +### Input Formatter - Native JavaScript Encapsulation +Description: Input formatting for easy validation +[Demonstration](http://widget.huanghanlian.com/inputFormat/) ```javascript -new inputFormat("selector",options,callback(api)); +new inputFormat("selector", options, callback(api)); ``` + +## License + +[Apache License 2.0](https://github.com/huanghanzhilian/widget/blob/master/LICENSE) + +MIT License + +Copyright (c) 2024 Jipeng Huang diff --git a/README.zh_CN.md b/README.zh_CN.md new file mode 100644 index 0000000..f5b4a17 --- /dev/null +++ b/README.zh_CN.md @@ -0,0 +1,135 @@ +

+ logo +

+

H-Widget v1.0.0

+ +

一个基于原生JavaScript开发的组件库,包含:轮播、标签页、下拉框、对话框等组件

+ +## README.md +- en [English](README.md) +- zh_CN [简体中文](README.zh_CN.md) + +## 项目在线演示 + +**项目在线演示地址:** + +- GitHub Pages 部署地址:[http://widget.huanghanlian.com/](http://widget.huanghanlian.com/) + +## 项目介绍 + +**背景:** +随着现在各种框架的兴起,我们很少去思考用原生JS是如何工作的,了解原生JS也非常重要~ + +--- + +## 如何使用 + +### 滑动条-原生js封装 +简介:进度及范围控制,支持手势操作,支持移动端+PC +[演示](http://widget.huanghanlian.com/range/) +```javascript +new range("selector",options,callback(api)); +``` + +### 滚动条-原生js封装 +简介:模拟滚动条,支持手势操作,支持移动端+PC +[演示](http://widget.huanghanlian.com/scrollbar/) +```javascript +new scrollbar("selector",options,callback(api)); +``` + +### 日历-原生js封装 +简介:日期及日期范围选择,灵活的日期选择功能 +[演示](http://widget.huanghanlian.com/calendar/) +```javascript +new calendar("selector",options); +``` + +### 无缝轮播图-原生js封装 +简介:无缝滚动、响应式、参数可调控等等 +[演示](http://widget.huanghanlian.com/bannerha/) +```javascript +new bannerha(selector,{options}); +``` + + +### Tab面板-原生js封装 +简介:Tab面板、响应式、参数可调控等等 +[演示](http://widget.huanghanlian.com/tabpanel/) +```javascript +new tabpanel(selector,{options}); +``` + + +### 无缝向上滚动-原生js封装 +简介:无缝滚动、间隔滚动、响应式、参数可调控等等 +[演示](http://widget.huanghanlian.com/scrollup/) +```javascript +new scrollup(selector,{options}); +``` + + + +### 放大镜-原生js封装 +简介:电商放大镜封装、参数可调控等等 +[演示](http://widget.huanghanlian.com/magnifier/) +```javascript +new magnifier(selector,{options}); +``` + +### 倒计时-原生js封装 +简介:倒计时、参数可调控等等 +[演示](http://widget.huanghanlian.com/countdown/) +```javascript +new countdown(selector,{options}); +``` + +### 下拉框-原生js封装 +简介:下拉框、支持键盘事件、参数可调控等等 +[演示](http://widget.huanghanlian.com/select/) +```javascript +new select(selector,{options}); +``` + +### 标签页-tabs-原生js封装 +简介:简易标签切换及淡入淡出幻灯片功能 +[演示](http://widget.huanghanlian.com/tabs/) +```javascript +new tabs(selector,{options}); +``` + +### 图片聚焦-imagezoom-原生js封装 +简介:图片居中及缩放处理 +[演示](http://widget.huanghanlian.com/imagezoom/) +```javascript +new imagezoom(selector,{options}); +``` + +### 弹出框-dialog-原生js封装 +简介:个性弹出层,自定义弹出位置,巧妙的定位方式 +[演示](http://widget.huanghanlian.com/dialog/) +```javascript +new dialog(selector,{options}); +``` + +### 城市三级联动 - citys-原生js封装 +简介:最新最全的城市区划数据,自定义事件处理方式 +[演示](http://widget.huanghanlian.com/citys/) +```javascript +new citys("selector",options,callback(api)); +``` + +### 格式化输入框-inputFormat-原生js封装 +简介:格式化输入,方便验证 +[演示](http://widget.huanghanlian.com/inputFormat/) +```javascript +new inputFormat("selector",options,callback(api)); +``` + +## 许可证 + +[Apache License 2.0](https://github.com/huanghanzhilian/widget/blob/master/LICENSE) + +MIT License + +Copyright (c) 2024 Jipeng Huang \ No newline at end of file diff --git a/accordion/index.html b/accordion/index.html index 9b072d8..7ee7543 100644 --- a/accordion/index.html +++ b/accordion/index.html @@ -49,7 +49,7 @@
项目地址 - 返回首页 + 返回首页
diff --git a/bannerha/index.html b/bannerha/index.html index 5ec70d8..9da38f9 100644 --- a/bannerha/index.html +++ b/bannerha/index.html @@ -96,7 +96,7 @@
项目地址 - 返回首页 + 返回首页
diff --git a/calendar/index.html b/calendar/index.html index 4dd0272..c48c0cb 100644 --- a/calendar/index.html +++ b/calendar/index.html @@ -70,7 +70,7 @@
diff --git a/citys/index.html b/citys/index.html index c527003..89ffc10 100644 --- a/citys/index.html +++ b/citys/index.html @@ -27,7 +27,7 @@
diff --git a/countdown/index.html b/countdown/index.html index 183fa02..3a58487 100644 --- a/countdown/index.html +++ b/countdown/index.html @@ -17,7 +17,7 @@
diff --git a/dialog/index.html b/dialog/index.html index ad78170..e96cf67 100644 --- a/dialog/index.html +++ b/dialog/index.html @@ -63,7 +63,7 @@
diff --git a/imagezoom/index.html b/imagezoom/index.html index a3edeac..22cdf6a 100644 --- a/imagezoom/index.html +++ b/imagezoom/index.html @@ -28,7 +28,7 @@
diff --git a/inputFormat/index.html b/inputFormat/index.html index 77a1473..d0627ce 100644 --- a/inputFormat/index.html +++ b/inputFormat/index.html @@ -17,7 +17,7 @@
diff --git a/magnifier/index.html b/magnifier/index.html index b74bfd9..d2e1706 100644 --- a/magnifier/index.html +++ b/magnifier/index.html @@ -90,7 +90,7 @@
diff --git a/public/image/widget.png b/public/image/widget.png new file mode 100644 index 0000000000000000000000000000000000000000..2d8b6e970eb3edb61b97cda363f1cb9ae011b117 GIT binary patch literal 5549 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 literal 0 HcmV?d00001 diff --git a/scrollbar/index.html b/scrollbar/index.html index a92c6b8..0d5d66c 100644 --- a/scrollbar/index.html +++ b/scrollbar/index.html @@ -78,7 +78,7 @@
diff --git a/scrollup/index.html b/scrollup/index.html index 77b56de..6e8f6f0 100644 --- a/scrollup/index.html +++ b/scrollup/index.html @@ -31,7 +31,7 @@
diff --git a/select/index.html b/select/index.html index 4546453..4bb712b 100644 --- a/select/index.html +++ b/select/index.html @@ -78,7 +78,7 @@
diff --git a/suggestion/index.html b/suggestion/index.html index b0ff00b..60980c7 100644 --- a/suggestion/index.html +++ b/suggestion/index.html @@ -46,7 +46,7 @@