How to insert flash into html

青灯夜游
Release: 2023-01-05 16:14:29
Original
7384 people have browsed it

How to insert flash into html: 1. Use the "" tag, the syntax is ""; 2. Use the "" tag, the syntax "".

How to insert flash into html

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

Use the tag

The tag is used to embed multimedia elements in HTML pages.

The following HTML code displays a Flash video embedded in a web page:

<embed src="intro.swf" height="200" width="200">
Copy after login

Description:

  • HTML4 does not recognize the tag. Your page cannot pass verification.

  • If the browser does not support Flash, the video will not playback

  • iPad and iPhone cannot display Flash videos.

  • If you convert the video to other formats, then it still won't play in all browsers.

##Use the tag

The tag is used to embed multimedia elements in HTML pages.

The following HTML snippet shows a Flash video embedded in a web page:

<object data="intro.swf" height="200" width="200"></object>
Copy after login
Note:

  • If the browser does not support Flash, the video will not play .

  • iPad and iPhone cannot display Flash videos.

  • If you convert the video to other formats, then it still won't play in all browsers.

Recommended tutorial: "

html video tutorial"

The above is the detailed content of How to insert flash into html. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!