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

What does muted mean in HTML

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-17 11:26:598718browse

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>

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>

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!

Statement:
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