From d3e1befe93fac44e966985c5e49a527fdc815375 Mon Sep 17 00:00:00 2001 From: allo Date: Thu, 21 Jul 2022 08:39:21 +0800 Subject: [PATCH 1/3] prepare markdown convertion for three sections --- files/zh-cn/web/demos/index.html | 34 ++--- .../creating_and_triggering_events/index.html | 6 +- .../detecting_device_orientation/index.html | 132 +++--------------- files/zh-cn/web/events/index.html | 104 +++++++------- .../index.html | 12 +- files/zh-cn/web/exslt/index.html | 2 +- files/zh-cn/web/exslt/regexp/match/index.html | 14 +- 7 files changed, 102 insertions(+), 202 deletions(-) diff --git a/files/zh-cn/web/demos/index.html b/files/zh-cn/web/demos/index.html index cf0c051e4e3d6f..813e410622dfb2 100644 --- a/files/zh-cn/web/demos/index.html +++ b/files/zh-cn/web/demos/index.html @@ -15,7 +15,7 @@ ---

Mozilla 支持各种令人兴奋的开源 Web 技术,我们鼓励大家使用它们。此页面提供了有关这些技术的一些有趣演示链接。

-

如果你知道开源 Web 技术的优秀演示或者应用,就在这里(以及 英文页面)添加一个合适的链接吧。

+

如果你知道开源 Web 技术的优秀演示或者应用,就在这里(以及 英文页面)添加一个合适的链接吧。

2D 图形

@@ -24,7 +24,7 @@

Canvas

变换

@@ -150,6 +150,6 @@

其他

  • Web Worker Fractals
  • Photo editor
  • Coral generator
  • -
  • Raytracer
  • +
  • Raytracer
  • HotCold Touch Typing
  • diff --git a/files/zh-cn/web/events/creating_and_triggering_events/index.html b/files/zh-cn/web/events/creating_and_triggering_events/index.html index 44d8aad87b5b10..45d3a01792fbfc 100644 --- a/files/zh-cn/web/events/creating_and_triggering_events/index.html +++ b/files/zh-cn/web/events/creating_and_triggering_events/index.html @@ -26,7 +26,7 @@

    创建自定义事件

    上述代码使用了 EventTarget.dispatchEvent() 方法。

    -

    绝大多数现代浏览器中都会支持这个构造函数(Internet Explorer 例外)。 要了解更为复杂的方法,可参考下面的 过时的方式 一节。

    +

    绝大多数现代浏览器中都会支持这个构造函数(Internet Explorer 例外)。 要了解更为复杂的方法,可参考下面的 过时的方式 一节。

    添加自定义数据 – CustomEvent()

    @@ -107,7 +107,7 @@

    动态创建和派发事件

    触发内置事件

    -

    下面的例子演示了一个在复选框上点击(click)的模拟(就是说在程序里生成一个 click 事件),这个模拟点击使用了 DOM 方法。参见这个动态示例

    +

    下面的例子演示了一个在复选框上点击(click)的模拟(就是说在程序里生成一个 click 事件),这个模拟点击使用了 DOM 方法。参见这个动态示例

    function simulateClick() {
       var event = new MouseEvent('click', {
    @@ -130,7 +130,7 @@ 

    触发内置事件

    参见

    See also

    -