search
HomeWeb Front-endH5 TutorialCan HTML5 really replace Flash_html5 tutorial tips

Adobe CTO Kevin Lynch

News on February 6, Beijing time, there is a fierce debate among web developers concerning the future of the web: Should they continue to use Adobe Flash, or switch to newer technology?

This debate has been going on for years, but last week Apple’s announcement that the iPad (like the iPhone) does not support Flash has heated up the topic again. Before that, Adobe had expressed in a low profile that they would be happy to provide Flash for the iPhone as long as Apple nodded.

But Adobe technical officer Kevin Lynch seems not to want to be polite anymore. He wrote in a blog on the 2nd that Apple is unwilling to include Flash on its "magical device", which means that iPad users can only see Broken web page. He even pulled out a Google Nexus One for comparison.

Lynch said: "We are about to complete Flash Player 10.1 for all major smartphone brands except one company." He specifically mentioned that this includes Nexus One, and the software can also be used on tablet devices, small notebooks and network television execution. He said: "Flash paired with browsers provides these devices with a competitive advantage because their customers will be able to browse the entire web... We are ready to add Flash to the browsers of these devices if Apple wants to, but at this time So far, we have not received Apple’s request.”

According to Adobe statistics, Flash has indeed achieved almost ubiquitous popularity on personal computers, with a penetration rate of over 98%. The technology's roots are in animated images, but the key to its success is to provide a simple mechanism for streaming audio and video from websites in addition to difficult-to-use technologies such as Microsoft, Apple and Real. However, several new technologies, including the completely reborn HTML standard, are locking in the audio-visual experience provided by Flash.

Bruce Lawson, web standards supporter of Opera Software, believes that HTML and other technologies will replace Flash, and the functions of these new technologies are already very close to the current Flash.

Lawson said: "For business, communications and society as a whole, the Internet (including video, games, animation) is too important a platform to be controlled by any single company. But that will take some time; now there are numbers Huge content using Flash ”

But the problem isn’t just the amount of Flash content existing on the web. HTML5 and related technologies are maturing rapidly, and because they are evolving simultaneously with browser support, even if they are still incomplete, they have formed a presence and power that cannot be ignored. But many developers are still taking a wait-and-see approach, preferring to wait until the situation becomes clearer before taking action.

Open Network Alliance

After years of confusion, browser manufacturers such as Apple, Opera, Mozilla and Google have finally reached a consensus on the new direction of the HTML standard. One of the most notable HTML5 standards is built-in sound and video support.

In addition, there are other new aspects, such as storing data in the computer for application to access, Web Sockets that regularly update data for the browser, Web Workers that allow network programs to perform multiple tasks at once, and improvements to 2D images. Canvas.

At the same time, these allies are also promoting other new standards under the banner of "open network", such as 3D image acceleration technology WebGL, improving web page layout through CSS (cascading style sheets) and network fonts, and strengthening support for other parts. , such as SVG (Scalable Vector Graphics), and improve the performance of web applications written in JavaScript.

Even Microsoft, which has watched the progress of browser development for the past 10 years and launched Silverlight to compete with Flash, has begun to invest. The company has pledged to embrace more web standards and has actually invested in HTML and SVG development in recent months. Patrick Dengler, senior planning manager of the IE team, said on the 1st about the SVG development work that Microsoft participated in: "We have received an unexpected positive response."

Adobe’s proprietary Flash software, in addition to conflicting with the “open network” in principle, also has a substantial shortcoming: crashing. Mozilla is rushing to launch a new "Lorentz" version of Firefox to prevent plug-ins from causing browser crashes. The main reason is Flash.

Advantages of Flash

But it is too early to conclude that Flash will die. The Open Web Alliance's operations remain confusing, fragmented, and unstable, and browser support for its various elements is inconsistent or non-existent. Flash is currently the most consistent browser add-on software, and unlike browser version updates, users can upgrade to new versions of Flash relatively quickly.

Formal standardization process is slow. Ian Hickson, who serves as HTML5 editor and is also employed by Google, only concluded the HTML5 work of the Web Hypertext Applications Technical Working Group (WHATWG) in October last year. But the group is working with the more bureaucratic W3C (Worldwide Information Network Consortium) to complete the standard.

The difficulties in the birth of the HTML5 audio and video standard show the difficulty of it replacing Flash. Flash videos can take advantage of various "codecs" when the video is transferred from the server to the user's computer. Users simply press the play button.

But currently HTML5 only accepts two codecs: H.264 supported by Apple Safari and Google Chrome, and Ogg Theora supported by Firefox, Chrome and Opera. IE, the most popular browser, currently does not support any HTML5 videos.

What to do with streaming video websites? If a website supports HTML5 video (which YouTube is currently experimenting with), it is best to retain Flash support to serve the many users whose current browsers do not yet support HTML5.

In addition, the Open Network Alliance may be on the verge of catching up with existing Flash technology, but Flash is not standing still. Lynch vowed last year that Flash would continue to be the best tool for exploring the Web.

Finally, the programming tools for open networks are not yet mature. One reason is that HTML5 and related technologies are not yet complete. , Lawson said: "You have to rely on browser interoperability. Past experience shows that it is not easy, but as the specifications are completed, the situation will improve."

Keep calm

HTML vs. Flash may develop into something similar to a religious war. Debates over tools have been going on for as long as programming languages ​​have been around, and there's also an emotional element to the issue.

Many open source fans who use Firefox are not accustomed to proprietary software, and they are used to speaking out their opinions loudly. Another group of Flash attackers are motivated entirely by their distaste for forced online advertising. Now with the opinions of Apple iPad supporters, a powerful anti-Flash force has taken shape.

John Nack, Director of Product Management for Photoshop at Adobe, said: “People like a killer situation: good guys versus bad guys, openness versus proprietary…”

Indeed, the wiser approach is to remain objective and accept that both technologies have their own advantages and disadvantages, and there will not be a life-or-death outcome in the short term. Perhaps the gap between the two is not as big as it seems. Don't forget that Adobe also has HTML tools. Its AIR software base is not only the Flash player, but also the WebKit HTML processing engine. Adobe has invested huge resources in Flash, but the company's interest in HTML will also increase as related technologies mature.

Lynch said: “In the long term, HTML will crowd out the demand for Flash in some places, especially the recent development of HTML5. But I don’t think this is a situation where one replaces the other, and it is unlikely to happen now or in the foreseeable future. ." (Translated by Chen Zhiwen)

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
html5的div一行可以放两个吗html5的div一行可以放两个吗Apr 25, 2022 pm 05:32 PM

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别是什么html5中列表和表格的区别是什么Apr 28, 2022 pm 01:58 PM

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

html5怎么让头和尾固定不动html5怎么让头和尾固定不动Apr 25, 2022 pm 02:30 PM

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有哪些html5中不支持的标签有哪些Mar 17, 2022 pm 05:43 PM

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

html5是什么意思html5是什么意思Apr 26, 2021 pm 03:02 PM

html5是指超文本标记语言(HTML)的第五次重大修改,即第5代HTML。HTML5是Web中核心语言HTML的规范,用户使用任何手段进行网页浏览时看到的内容原本都是HTML格式的,在浏览器中通过一些技术处理将其转换成为了可识别的信息。HTML5由不同的技术构成,其在互联网中得到了非常广泛的应用,提供更多增强网络应用的标准机。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor