From aae6a3ef84da0d7f41b880b2e60c9e4689dc1fc5 Mon Sep 17 00:00:00 2001 From: allo Date: Wed, 11 May 2022 10:42:10 +0800 Subject: [PATCH] remove span tag in web/events --- .../creating_and_triggering_events/index.html | 4 +- .../detecting_device_orientation/index.html | 116 +++++++++--------- files/zh-cn/web/events/index.html | 14 +-- .../index.html | 10 +- files/zh-tw/web/events/index.html | 14 +-- 5 files changed, 79 insertions(+), 79 deletions(-) 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 ea96143dea9cc9..7cafacda677b9c 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()

@@ -35,7 +35,7 @@

添加自定义数据 – CustomE
var event = new CustomEvent('build', { 'detail': elem.dataset.time });
-

下面的代码允许你在事件监听器中访问更多的数据:

+

下面的代码允许你在事件监听器中访问更多的数据:

function eventHandler(e) {
   log('The time is: ' + e.detail);
diff --git a/files/zh-cn/web/events/detecting_device_orientation/index.html b/files/zh-cn/web/events/detecting_device_orientation/index.html
index ba00972351342b..7f8951f008136c 100644
--- a/files/zh-cn/web/events/detecting_device_orientation/index.html
+++ b/files/zh-cn/web/events/detecting_device_orientation/index.html
@@ -19,7 +19,7 @@
 
 

第二种是{{domxref("DeviceMotionEvent")}},它会在加速度发生改变时触发。跟{{domxref("DeviceOrientationEvent")}}不同,{{domxref("DeviceMotionEvent")}}监听的是相应方向上加速度的变化。传感器通常都具有监听{{domxref("DeviceMotionEvent")}}的能力,包括笔记本中用于保护移动中的存储设备的传感器。{{domxref("DeviceOrientationEvent")}}事件更多见于移动设备中。

-

处理方向(orientation)事件

+

处理方向(orientation)事件

要接收设备方向变化信息,只需要监听{{ event("deviceorientation") }}事件:

@@ -30,7 +30,7 @@

处理方向(window.addEventListener("deviceorientation", handleOrientation, true);

-

注册完事件监听处理函数后(对应这个例子中的handleOrientation),监听函数会定期地接收到最新的设备方向数据。

+

注册完事件监听处理函数后(对应这个例子中的handleOrientation),监听函数会定期地接收到最新的设备方向数据。

方向事件对象中包含四个值:

@@ -56,7 +56,7 @@

处理方向(相关值解释

-

关于每一个轴的记录值表示的是相对于标准的坐标系,设备在某一个给定轴上的旋转量。Orientation and motion data explained 这篇文章有更详细的描述,下面是对这篇文章的总结。

+

关于每一个轴的记录值表示的是相对于标准的坐标系,设备在某一个给定轴上的旋转量。Orientation and motion data explained 这篇文章有更详细的描述,下面是对这篇文章的总结。