请输入您要查询的百科知识:

 

词条 Progressive enhancement
释义

  1. History

  2. Introduction and background

  3. Core principles

  4. Support and adoption

  5. Benefits for accessibility

  6. Benefits for Search Engine Optimization (SEO)

  7. Criticism and responses

  8. See also

  9. Notes

  10. References

  11. Further reading

{{Multiple issues|{{Technical|date=November 2015}}{{More footnotes|date=February 2011}}
}}

Progressive enhancement is a strategy for web design that emphasizes core webpage content first. This strategy then progressively adds more nuanced and technically rigorous layers of presentation and features on top of the content as the end-user's browser/internet connection allow. The proposed benefits of this strategy are that it allows everyone to access the basic content and functionality of a web page, using any browser or Internet connection, while also providing an enhanced version of the page to those with more advanced browser software or greater bandwidth.

History

"Progressive Enhancement" was coined by Steven Champeon & Nick Finck at the SXSW Interactive conference on March 11, 2003 in Austin,[1] and through a series of articles for Webmonkey which were published between March and June 2003.[2]

Specific Cascading Style Sheets (CSS) techniques pertaining to flexibility of the page layout accommodating different screen resolutions is the concept associated with Responsive web design approach. .net Magazine chose Progressive Enhancement as #1 on its list of Top Web Design Trends for 2012 (Responsive design was #2).[3] Google has encouraged the adoption of progressive enhancement to help "our systems (and a wider range of browsers) see usable content and basic functionality when certain web design features are not yet supported".[4]

Introduction and background

The strategy is an evolution of a previous web design strategy known as graceful degradation, wherein designers would create Web pages for the latest browsers that would also work well in older versions of browser software. Graceful degradation was supposed to allow the page to "degrade", or remain presentable even if certain technologies assumed by the design were not present, without being jarring to the user of such older software. In practice, graceful degradation has been supplanted by an attitude that the end user should "just upgrade".{{Citation needed|date=July 2017}}

In Progressive Enhancement (PE) the strategy is deliberately reversed: a basic markup document is created, geared towards the lowest common denominator of browser software functionality, and then the designer adds in functionality or enhancements to the presentation and behavior of the page, using modern technologies such as Cascading Style Sheets, Scalable Vector Graphics (SVG), or JavaScript. All such enhancements are externally linked, preventing data unusable by certain browsers from being unnecessarily downloaded.

The PE approach is derived from Champeon's early experience (c. 1993-4) with Standard Generalized Markup Language (SGML), before working with HTML or any Web presentation languages, as well as from later experiences working with CSS to work around browser bugs. In those early SGML contexts, semantic markup was of key importance, whereas presentation was nearly always considered separately, rather than being embedded in the markup itself. This concept is variously referred to in markup circles as the rule of separation of presentation and content, separation of content and style, or of separation of semantics and presentation. As the Web evolved in the mid-nineties, but before CSS was introduced and widely supported, this cardinal rule of SGML was repeatedly violated by HTML's extenders. As a result, web designers were forced to adopt new, disruptive technologies and tags in order to remain relevant. With a nod to graceful degradation, in recognition that not everyone had the latest browser, many began to simply adopt design practices and technologies only supported in the most recent and perhaps the single previous major browser releases. For several years, much of the Web simply did not work in anything but the most recent, most popular browsers. This remained true until the rise and widespread adoption of and support for CSS, as well as many populist, grassroots educational efforts (from Eric Costello, Owen Briggs, Dave Shea,[5] and others) showing Web designers how to use CSS for layout purposes.

PE is based on a recognition that the core assumption behind "graceful degradation" — that browsers always got faster and more powerful — was proving itself false with the rise of handheld and PDA devices with low-functionality browsers and serious bandwidth constraints. In addition, the rapid evolution of HTML and related technologies in the early days of the Web has slowed, and very old browsers have become obsolete, freeing designers to use powerful technologies such as CSS to manage all presentation tasks and JavaScript to enhance complex client-side behavior.

First proposed as a somewhat less unwieldy catchall phrase to describe the delicate art of "separating document structure and contents from

semantics, presentation, and behavior", and based on the then-common use of CSS hacks to work around rendering bugs in specific browsers, the PE strategy has taken on a life of its own as new designers have embraced the idea and extended and revised the approach.

Core principles

PE strategy consists of the following core principles:

  • Basic content should be accessible to all web browsers
  • Basic functionality should be accessible to all web browsers
  • Sparse, semantic markup contains all content
  • Enhanced layout is provided by externally linked CSS
  • Enhanced behavior is provided by unobtrusive, externally linked JavaScript
  • End-user web browser preferences are respected

Support and adoption

  • In August 2003 Jim Wilkinson created a PE wiki page to collect some tricks and tips and to explain the overall strategy.[6]
  • Designers such as Jeremy Keith have shown how the approach can be used harmoniously with still other approaches to modern web design (such as Ajax) to provide flexible, but powerful, user experiences.[7]
  • Aaron Gustafson wrote a series covering the fundamentals of progressive enhancement, from the underlying philosophy to CSS approaches to how to handle JavaScript, for A List Apart.[8][9][10]
  • Others, including Dave Shea, have helped to spread the adoption of the term to refer to CSS-based design strategies.
  • Organizations such as the Web Standards Project (WaSP), which was behind the creation of Acid2 and Acid3 tests, have embraced PE as a basis for their educational efforts.
  • In 2006 Nate Koechley at Yahoo! made extensive reference to PE in his own approach to Web design and browser support, Graded Browser Support (GBS).[11]
  • Steve Chipman at AOL has referred to PE (by DOM scripting) as a basis for his Web design strategy.[12]
  • David Artz, leader of the AOL Optimization team, developed a suite of Accessible Rendering Technologies, and invented a technique for disassembly of the "enhancement" on the fly, saving the user's preference.
  • Chris Heilmann discussed the importance of targeted delivery of CSS so that each browser only gets the content (and enhancements) it can handle.[13]
  • Scott Jehl of Filament Group proposed a "Test-Driven Progressive Enhancement",[14] recommending to test the device capabilities (rather than inferring them from the detected user agent) before providing enhancements.
  • Wt is an open-source server-side web application framework which transparently implements progressive enhancement during its bootstrap, progressing from plain HTML to full Ajax.

Benefits for accessibility

Web pages created according to the principles of PE are by their nature more accessible, because the strategy demands that basic content always be available, not obstructed by commonly unsupported or easily disabled scripting. Additionally, the sparse markup principle makes it easier for tools that read content aloud to find that content. It is unclear as to how well PE sites work with older tools designed to deal with table layouts, "tag soup", and the like.

Benefits for Search Engine Optimization (SEO)

Improved results with respect to search engine optimization (SEO) is another side effect of a PE-based Web design strategy. Because the basic content is always accessible to search engine spiders, pages built with PE methods avoid problems that may hinder search engine indexing.[15]

Criticism and responses

Some skeptics, such as Garret Dimon, have expressed their concern that PE is not workable in situations that rely heavily on JavaScript to achieve certain user interface presentations or behaviors,[16] to which unobtrusive JavaScript is one response. Others have countered with the point that informational pages should be coded using PE in order to be indexed by spiders,[17] and that even Flash-heavy pages should be coded using PE.[18] In a related area, many have expressed their doubts concerning the principle of the separation of content and presentation in absolute terms, pushing instead for a realistic recognition that the two are inextricably linked.[19][20]

See also

  • Ajax
  • Content adaptation, transform content to adapt to device capabilities
  • Fault Tolerant system
  • jQuery Mobile
  • Fluid layouts
  • Semantic HTML
  • Unobtrusive JavaScript

Notes

1. ^Champeon, Steven & Finck, Nick (2003) Inclusive Web Design for the Future, SxSWi presentation
2. ^Champeon, Steven (2003), Progressive Enhancement and the Future of Web Design, Webmonkey
3. ^{{cite web|title=15 top web design and development trends for 2012|date=January 9, 2012|url=http://www.creativebloq.com/features/15-top-web-design-and-development-trends-for-2012/}}
4. ^Pierre Far (2014), Updating our technical Webmaster Guidelines, Webmaster Central Blog
5. ^{{cite web |title=Zen and the Art of Web Improvement |url=http://www.mezzoblue.com/archives/pres/we04/designing/index.php |accessdate=14 April 2006}}
6. ^Wilkinson, Jim (2003), Progressive Enhancement - CSS Discuss
7. ^Jeremy Keith's Adactio blog (2005), Progressive Enhancement with Ajax
8. ^Aaron Gustafson (2008), Understanding Progressive Enhancement, A List Apart
9. ^Aaron Gustafson (2008), Progressive Enhancement with CSS, A List Apart
10. ^Aaron Gustafson (2008), Progressive Enhancement with JavaScript, A List Apart
11. ^Nate Koechley, Graded Browser Support {{webarchive|url=https://web.archive.org/web/20060414110338/http://developer.yahoo.com/yui/articles/gbs/gbs.html |date=2006-04-14 }}
12. ^Steven G. Chipman (2005), New Skool DOM Scripting
13. ^Chris Heilmann, Double Vision – Give the Browsers CSS They Can Digest (2005)
14. ^{{cite web|last1=Jehl|first1=Scott|title=Test Driven Progressive Enhancement|url=http://alistapart.com/article/testdriven|website=A List Apart|accessdate=27 October 2009}}
15. ^Stephan Spencer, PE is good for SEO | Searchlight - CNET News
16. ^Dimon, Garret, The Reality of Progressive Enhancement {{webarchive|url=https://web.archive.org/web/20070317045908/http://v1.garrettdimon.com/archives/the-reality-of-progressive-enhancement |date=2007-03-17 }}
17. ^IA Summit 2006 » Blog Archive » Web 2.0 and SEO? {{webarchive|url=https://web.archive.org/web/20060417210246/http://iasummit.org/2006/blog/?p=86 |date=2006-04-17 }}
18. ^deconcept » Using alternate content as content in Flash
19. ^Stopdesign | Are They Really Separated? (2003)
20. ^A List Apart: Articles: Separation Anxiety: The Myth of the Separation of Style from Content (2000)

References

{{refbegin}}
  • Bowman, Doug (2003) Are They Really Separated? Retrieved April 14, 2006.
  • Edwards, James & Adams, Cameron (2006) Script Smarter: Quality JavaScript from Scratch Retrieved April 14, 2006.
  • Heilmann, Christian (2006) [https://web.archive.org/web/20060412132933/http://digital-web.com/articles/seven_accessibility_mistakes_part_1/ Seven Accessibility Mistakes, Part I] Retrieved April 14, 2006.
  • Koechley, Nate (2006) [https://web.archive.org/web/20060414110338/http://developer.yahoo.com/yui/articles/gbs/gbs.html Graded Browser Support] Retrieved April 14, 2006.
  • Malicoat, Todd (2003) [https://web.archive.org/web/20030829000441/http://www.seotoday.com/browse.php/category/articles/id/321/index.php Form vs. Function in Site Design] Retrieved April 14, 2006.
  • Nyman, Robert (2006) What is Accessibility? Retrieved April 14, 2006.
  • Olsson, Tommy (2007) for Accessites.org Graceful Degradation & Progressive Enhancement Retrieved April 2, 2007.
  • Shea, Dave (2004) Zen and the Art of Web Improvement (WE04 Keynote) Retrieved April 14, 2006.
  • Stearns, Geoff (2006) Using Alternate Content As Content In Flash Retrieved April 14, 2006.
  • van der Sluis, Bobby (2005) Ten Good Practices for Writing JavaScript in 2005 Retrieved April 14, 2006.
  • 101 Search Engine Optimization Tips Retrieved April 14, 2006.
{{refend}}

Further reading

Articles
{{refbegin}}
  • Gustafson, Aaron (2008) Understanding Progressive Enhancement Retrieved July 7, 2011
  • Gustafson, Aaron (2008) Progressive Enhancement with CSS Retrieved July 7, 2011.
  • Gustafson, Aaron (2008) Progressive Enhancement with JavaScript Retrieved July 7, 2011
  • Gustafson, Aaron (2007) Ruining the User Experience Retrieved May 7, 2007.
  • hesketh.com, September 12, 2003 Progressive Enhancement: Paving the Way for Future Web Design
  • Keith, Jeremy (2006) Behavioral Separation Retrieved May 7, 2007.
  • Olsson, Tommy (2007) Graceful Degradation & Progressive Enhancement
{{refend}}
Books
{{refbegin}}
  • Briggs, Owen; Champeon, Steven; Costello, Eric; Patternson, Matthew (2004) [https://web.archive.org/web/20060421205755/http://www.glasshaus.com/BookInfo.asp?bookId=59 Cascading Style Sheets: Separating Content From Presentation] (2nd ed.). San Francisco: Apress. {{ISBN|1-59059-231-X}}
  • Gustafson, Aaron (2011) Adaptive Web Design: Crafting Rich Experiences with Progressive Enhancement. Chattanooga: Easy Readers. {{ISBN|978-0-9835895-0-1}}.
  • Keith, Jeremy (2007) Bulletproof Ajax. Berkeley: New Riders. {{ISBN|0-321-47266-7}}
  • Keith, Jeremy (2005) [https://web.archive.org/web/20070428025957/http://www.friendsofed.com/book.html?isbn=1590595335 DOM Scripting: Web Design with JavaScript and the Document Object Model]. Berkeley: friends of ED. {{ISBN|1-59059-533-5}}
  • Parker, Todd; Toland, Patty; Jehl, Scott; Costello Wachs, Maggie (The Filament Group) (2010) Designing with Progressive Enhancement Peachpit/New Riders. {{ISBN|978-0-321-65888-3}}
{{refend}}{{DEFAULTSORT:Progressive Enhancement}}

5 : Web design|Usability|Web accessibility|Responsive web design|Adaptive Web Design

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/30 12:33:25