Skip to content

Commit

Permalink
fix style and translate the "see also" section
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 committed Nov 24, 2023
1 parent d9166c5 commit e1596e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions files/zh-cn/web/api/navigator/getusermedia/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/API/Navigator/getUserMedia

> **备注:** 此 API 已更名为 {{domxref("MediaDevices.getUserMedia()")}}。请使用那个版本进行替代!这个已废弃的 API 版本仅为了向后兼容而存在。
{{APIRef}}{{deprecated_header}}
{{APIRef("Media Capture and Streams")}}{{deprecated_header}}

**Navigator.getUserMedia()** 方法提醒用户需要使用音频(0 或者 1)和(0 或者 1)视频输入设备,比如相机,屏幕共享,或者麦克风。如果用户给予许可,**successCallback** 回调就会被调用,{{domxref("MediaStream")}} 对象作为回调函数的参数。如果用户拒绝许可或者没有媒体可用,**errorCallback** 就会被调用,类似的,**`PermissionDeniedError`** 或者 **`NotFoundError`** 对象作为它的参数。注意,有可能以上两个回调函数都不被调用,因为不要求用户一定作出选择(允许或者拒绝)。

Expand Down Expand Up @@ -98,7 +98,7 @@ if (navigator.getUserMedia) {
## 参见
- {{domxref("MediaDevices.getUserMedia()")}} 替代了当前废弃的版本
- [WebRTC](/zh-CN/docs/WebRTC) - the introductory page to the API
- [MediaStream API](/zh-CN/docs/WebRTC/MediaStream_API) - the API for the media stream objects
- [Taking webcam photos](/zh-CN/docs/WebRTC/taking_webcam_photos) - a tutorial on using `getUserMedia() for taking photos rather than video.`
- {{domxref("MediaDevices.getUserMedia()")}} 代替了这个已弃用的方法
- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API)——该 API 的介绍页面
- [媒体捕获和流 API](/zh-CN/docs/Web/API/Media_Capture_and_Streams_API)——媒体流对象的 API
- [使用网络摄像头拍摄照片](/zh-CN/docs/Web/API/Media_Capture_and_Streams_API/Taking_still_photos)——使用 `getUserMedia()` 拍摄照片(而不是视频)的教程。

0 comments on commit e1596e0

Please sign in to comment.