Home > Web Front-end > HTML Tutorial > What does muted mean in HTML

What does muted mean in HTML

爱喝马黛茶的安东尼
Release: 2019-08-17 11:26:59
Original
8816 people have browsed it

What does muted mean in HTML

Introduction to HTML

Definition and usage

The muted attribute is a boolean (Boolean) attribute.

muted property sets or returns whether the audio/video should be muted (sound turned off).

Related recommendations: "HTML_HTML5 Knowledge"

Grammar

<video muted>
Copy after login

Examples

Turn off the sound of the video:

<video controls muted>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  您的浏览器不支持 video 标签。
</video>
Copy after login

Browser support

What does muted mean in HTML

##Internet Explorer 10 , Firefox, Opera, Chrome, and Safari 6 support the muted attribute.

Note: Internet Explorer 9 and earlier IE versions do not support the muted attribute of

The above is the detailed content of What does muted mean in HTML. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template