From 697517669a6ded38062f480a17a752f0bc4255af Mon Sep 17 00:00:00 2001 From: ella <1522497539@qq.com> Date: Thu, 1 Aug 2024 02:53:51 +0000 Subject: [PATCH 1/6] =?UTF-8?q?add=20canvas.js.=20=E6=B5=8B=E8=AF=95canvas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ella <1522497539@qq.com> --- canvas.js | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 canvas.js diff --git a/canvas.js b/canvas.js new file mode 100644 index 0000000..803af68 --- /dev/null +++ b/canvas.js @@ -0,0 +1,64 @@ +Canvas +
+ \ No newline at end of file -- Gitee From bdb2af39178f9239de9a556eb7539c2f165b6ec7 Mon Sep 17 00:00:00 2001 From: ella <1522497539@qq.com> Date: Thu, 1 Aug 2024 06:21:35 +0000 Subject: [PATCH 2/6] add classlist.html. Signed-off-by: ella <1522497539@qq.com> --- classlist.html | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 classlist.html diff --git a/classlist.html b/classlist.html new file mode 100644 index 0000000..769218e --- /dev/null +++ b/classlist.html @@ -0,0 +1,67 @@ +Simple classList manipulation + +
+

Clicking the buttons below will toggle the class on the bacon ipsum text below, assigning the class with the same name (styles seen below). This is done using the new classList API.

+

Not supported :(

+
<style> 
+  .big { font-size: 30px; }
+  .bold { font-weight: bold; }
+  .pink { background: #FF5E99; color: #fff; }
+</style>
+

Bacon ipsum dolor sit amet pancetta bresaola tenderloin, swine meatball tongue ham boudin t-bone ribeye jerky sausage. Pork loin cow shankle drumstick tri-tip, chicken venison strip steak.

+

Toggle a class: + + + +

+
+ \ No newline at end of file -- Gitee From 2df36f9dccd528c89ee69d18eee95d4127b44358 Mon Sep 17 00:00:00 2001 From: ella <1522497539@qq.com> Date: Wed, 7 Aug 2024 09:12:28 +0000 Subject: [PATCH 3/6] =?UTF-8?q?add=20canvas-grad.html.=20=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E6=B7=BB=E5=8A=A0=E6=96=87=E4=BB=B6=20canvas-grad.htm?= =?UTF-8?q?l.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ella <1522497539@qq.com> --- canvas-grad.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 canvas-grad.html diff --git a/canvas-grad.html b/canvas-grad.html new file mode 100644 index 0000000..01c867f --- /dev/null +++ b/canvas-grad.html @@ -0,0 +1,77 @@ + + + + +Canvas Gradient + + + + + +Fork me on GitHub + + + + + \ No newline at end of file -- Gitee From e9127573a6eb9516124841191e86fbe98fea5684 Mon Sep 17 00:00:00 2001 From: ella Date: Tue, 10 Sep 2024 09:29:04 +0000 Subject: [PATCH 4/6] =?UTF-8?q?=E6=96=B0=E5=BB=BA=20test00?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test00/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test00/.keep diff --git a/test00/.keep b/test00/.keep new file mode 100644 index 0000000..e69de29 -- Gitee From eaba8adca1578ab5ee0f1313b30693c684b9def2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8F=9C=E9=B8=9F?= <1459113203@qq.com> Date: Tue, 10 Sep 2024 10:06:20 +0000 Subject: [PATCH 5/6] =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 菜鸟 <1459113203@qq.com> --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 22fdce8..e0974ee 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -24,6 +24,7 @@ module.exports = { // allow async-await 'generator-star-spacing': 'off', // allow debugger during development + 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' } } -- Gitee From 07485820fa677314b613bb87217d8f3ea7894aa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8F=9C=E9=B8=9F?= <1459113203@qq.com> Date: Fri, 13 Sep 2024 07:43:49 +0000 Subject: [PATCH 6/6] update .eslintrc.js. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 菜鸟 <1459113203@qq.com> --- .eslintrc.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index e0974ee..1ce7980 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -8,13 +8,6 @@ module.exports = { env: { browser: true, }, - extends: [ - // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention - // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. - 'plugin:vue/essential', - // https://github.com/standard/standard/blob/master/docs/RULES-en.md - 'standard' - ], // required to lint *.vue files plugins: [ 'vue' @@ -26,5 +19,9 @@ module.exports = { // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' - } + }, + extends: [ + 'plugin:vue/essential', + 'standard' + ] } -- Gitee