SlideShare ist ein Scribd-Unternehmen logo
1 von 94
Downloaden Sie, um offline zu lesen
NSYSU MIS
          2009/3/5




josephj
Hi!    josephj




• 2.5   F2E

• 0.5         Evangelist

•                    RD

                                          @josephj6802
                                     http://josephj.com
                                josephj@yahoo-inc.com
2008.5
Question 1
Open APIs
   Yahoo!
Open API




  AJAX API




Open API
Yahoo!
            Format
         Flickr
http://www.flickr.com/photos/tags/
http://api.flickr.com/services/feeds/photos_public.gne?
      tags=         &lang=en-us&format=rss_200
http://api.flickr.com/services/feeds/photos_public.gne?
        tags=        &lang=en-us&format=php
<script src=”http://api.flickr.com/services/feeds/photos_public.gne?
              &format=json&jsoncallback=getFlickrData ”></script>
tags=
http://api.flickr.com/services/feeds/photos_public.gne?
            tags=twopenhack08&format=lol
API   Feed
Schema
Service   ...
JavaScript   HTML ...
Schema
 Code
Pipes   Remix Feed
RSS Feed




Union
...   CLI
YQL
Yahoo! Query Language
Yahoo!
Question 2
YUI Library
       Web2.0
UI
                        UI    YUI    UI

        Button    Def. But.


         Menu
Label

         Text Field
Label


        Label

        Label


  Text Area




         click me
YUI
http://blogs.computerworld.com/nytimes_iphone_browser_marketshare



         iPhone                                  YUI
http://marketshare.hitslink.com/report.aspx?sample=21&qprid=43&qpcustom=Chrome+0.2




   Google Chrome                                                                 ;)
Rich Text Editor
Accessbility
Library
Developer Network Home   Help                                                                                                               Site Search




 Design Pattern Library
 Yahoo! Developer Network > Design Pattern Library > Auto Complete


Auto Complete
                                                                                                           QUICK JUMP
 Problem Summary
                                                                                                                Solution
 The user needs to enter an item into a text box which could ambiguous or hard to
                                                                                                                Rationale
 remember and therefore has the potential to be mis-typed.
                                                                                                                Accessibility

 EXAMPLE:
                                                                                                           RELATED PATTERNS
                                                                                                                Calendar Picker

                                                                                                           AS USED ON YAHOO!
                                                                                                                Yahoo! Mail Beta
                                                                                                                Yahoo! Maps Beta
                                                                                                                Yahoo! My Web 2

                                                                                                           BLOG

                                                                                                                Blog Article

                                                                                                           Y! UI CODE EXAMPLES

                                                                                                                Auto Complete
                                                                                                                Component
 Auto completion of contacts in Yahoo! Mail Beta                                                                Y! Search (JSON)
                                                                                                                Y! Search (XML)
 Use When                                                                                                       In-Memory (array)
                                                                                                                In-Memory (function)
   The suggestions can be pulled from a manageable set of data.
                                                                                                                Flickr (XML)
   The input item can be entered in multiple ways.                                                              Flat data
                                                                                                                Playground
   The input item can be matched with a specific data item in the system.
   Speed and accuracy of entry is an important goal.
                                                                                                           Show with revisions
   The total number of items would be too large or inconvenient for displaying in a
   standard drop down box.



Solution                                                                                                   This work is licensed under a
                                                                                                           Creative Commons Attribution 2.5
                                                                                                           License.
 Layout

   Use a standard text box for input.
   Label the text box to match the user's expection of what field will be searched against.

 Interaction

   As the user types, display a list of suggested items that most closely match what the
   user has typed. Continue to narrow or broaden the list of suggested items based on the
   user's input.
   Display the suggested items list in a drop down box directly underneath the text box.
   The suggested items list may be based on the complete set of data or more narrowly
   based on other criteria such as each item's frequency of use.
   When available, show multiple fields of information for each suggested item. In the
   Yahoo! Mail example above, two fields are presented: the contact's full name and the
   contact's email address.
   Highlight the closest matching item within the suggested items list.
           Show the matched item as first in the list.
           Highlight the background of the matched item.
           When multiple fields are shown for each suggested item the match may occur
           with the initial characters of any of the fields presented.
   For each suggested item in the suggest items list show the characters that exactly
   match the user's input. When multiple fields are shown in a suggested item the
   matching characters may appear in any of the fields presented. In the example below,
   the characters 'Yu' have been typed by the user. The match is on three items. Notice
   that the first item matched on the contact's email address '<yuiblogger.com>' whereas
   the second and third items are matched on the contact's name (e.g., 'Yusef Jones'.)




   Allow the user to delete a character of input and display the previous suggested items
   list.
   Allow the user to complete the input field by pressing the Tab key or Enter; key. The
   current matched item in the suggested items list will be accepted as the value for the
   input field.
   Allow the user to optionally highlight an item of their choice from the suggested item list
   with the mouse or with the up and down arrow keys.
   Allow the user to cancel the suggested items list by pressing the Esc key. The drop
   down list will close. Subsequently pressing the Tab key or Enter key will accept the
   value from the input field. However, typing more characters after hitting the Esc key will
   restart the auto completion behavior displaying the suggested items list.
   If multiple input items are allowed in a single input field, allow the user to use the
   Comma key to separate each input item.
           Pressing the comma key will complete an individual item match.
           The auto complete behavior restarts when the user begins typing characters for
           the next input item.


Rationale
   Reducing the number of keystrokes allows for faster user input.
   Showing additional formatting information in the suggested items list (like the email
   address in the example above) removes ambiguity.
   Continual feedback helps the user narrow in on the correct choice.


Accessibility
   Label the text box to match the user's expection of what field will be searched against.
   Allow the user to highlight a desired match either using a mouse or navigating to it with
   the up or down arrow keys.
   Allow the user to complete the form by pressing the Tab or Enter keys.
   Allow the user to cancel suggestions by pressing the Esc key.
   Allow the input field to receive keyboard focus by pressing the Tab key.
   Once the edit field is in focus make sure that the focus stays in the edit field during
   autocomplete.
   Do not send any page refreshes when updating the field (page refreshes will signal
   assistive technology to start reading the page again.)
   The insertion cursor should move as the left/right arrow keys are pressed in the text
   field.




                                           Copyright © 2005-2007 Yahoo! Inc. All rights reserved.
                                     Privacy Policy - Terms of Service - Copyright Policy - Job Openings
UI
YUI   Web
      OSDC
Carousel
+
YUI
YUI   300
IDE
      ...
Aptana
YUI
YUI   BSD License
YUI
YUI
http://josephj.com/training/nsysu/
1. YUI
  DIV & CSS Layout
950px




                   240px




50%, 50%
YUI Grid Builder




http://developer.yahoo.com/yui/grids/builder/
2. YUI
2    YUI
http://josephj.com/training/nsysu/yui-menu.html

   1.    new
      YAHOO.widget.MenuBar([         id]);
             YUI
   2.             render()
2   YUI
http://josephj.com/training/nsysu/yui-menu.html



                           (true   false)
   autosubmenudisplay


       hidedelay
                              n

                           (true   false)
        lazyload
3. YUI
         UI
YUI Button
HTML

            YUI Button
3     YUI
http://josephj.com/training/nsysu/yui-button.html

    1.     new YAHOO.widget.Button([
         id]);
4. YUI
  Web 2.0
YUI
                       YAHOO.widget.Dialog

YAHOO.widget.Panel




YAHOO.widget.Panel

                     YAHOO.widget.SimpleDialog
4        YUI
http://josephj.com/training/nsysu/yui-panel.html
   1.     var oPanel = new YAHOO.widget.Panel([       id], [   ]);
        #panel
   2. oPanel.render(document.body)             append
   3. oButton.addListener(‘click’, onButtonClick)
      onButtonClick       oPanel.show();
4        YUI
http://josephj.com/training/nsysu/yui-panel.html

           close
      fixedcenter
           modal
          underlay             shadow’, ‘matte’
           visible
           width

      {        1:        1,      2:           2}
5. YUI Get
http://www.flickr.com/photos/tags/
<script src=”http://api.flickr.com/services/feeds/photos_public.gne?
                           &format=json”></script>
             tags=
5     YUI Get
http://josephj.com/training/nsysu/yui-get.html
Question 3
Application Platform
            YAP
Yahoo!
Mail/Contact API   Local




Yahoo!
Yahoo!
Pat Jameson




              Pat Jameson
Pat Jameson
Y!Sports




           +
YAP Developer Studio
    YAP
Yahoo!
         Cool
More?
BluePrint
SearchMonkey
Fire Eagle
OpenID   SSO
Quick Summary
• Open APIs Yahoo!
• YUI         Web 2.0

• YAP     Yahoo!


  Yahoo!                Powerful
Questions?

http://www.flickr.com/photos/phploveme/2847931240/
Thank You




josephj@yahoo-inc.com

Weitere ähnliche Inhalte

Ähnlich wie Josephj Open At Yahoo Nsysu2

Roma introduction and concepts
Roma introduction and conceptsRoma introduction and concepts
Roma introduction and conceptsLuca Garulli
 
Search Engines and Flash: Secrets, Tricks, and Black Magic
Search Engines and Flash: Secrets, Tricks, and Black MagicSearch Engines and Flash: Secrets, Tricks, and Black Magic
Search Engines and Flash: Secrets, Tricks, and Black Magicguestb1f3a
 
Yahoo! Application Platform Technical Deep Dive
Yahoo! Application Platform Technical Deep DiveYahoo! Application Platform Technical Deep Dive
Yahoo! Application Platform Technical Deep DiveTony Ng
 
yui3 is Sexy - 使用 YUI 3 的 Sexy Part !
yui3 is Sexy - 使用 YUI 3 的 Sexy Part !yui3 is Sexy - 使用 YUI 3 的 Sexy Part !
yui3 is Sexy - 使用 YUI 3 的 Sexy Part !Joseph Chiang
 
Y!OS Overview and Deep Code Dive
Y!OS Overview and Deep Code DiveY!OS Overview and Deep Code Dive
Y!OS Overview and Deep Code DiveJonathan LeBlanc
 
From YUI3 to K2
From YUI3 to K2From YUI3 to K2
From YUI3 to K2kaven yan
 
An Introduction To The Use Of Widgets in libraries
An Introduction To The Use Of Widgets in librariesAn Introduction To The Use Of Widgets in libraries
An Introduction To The Use Of Widgets in librariesAaron Tay
 
Build your web apps with yql and yui
Build your web apps with yql and yuiBuild your web apps with yql and yui
Build your web apps with yql and yuiISOCHK
 
covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...
covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...
covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...Shun Nagaya
 
JavaScript Libraries (Kings of Code)
JavaScript Libraries (Kings of Code)JavaScript Libraries (Kings of Code)
JavaScript Libraries (Kings of Code)jeresig
 
YAP, Open Hack Day, Bangalore 2011
YAP, Open Hack Day, Bangalore 2011YAP, Open Hack Day, Bangalore 2011
YAP, Open Hack Day, Bangalore 2011kals_amit_kumar
 
Custom Event Reporting from Flash to Google Analytics
Custom Event Reporting from Flash to Google AnalyticsCustom Event Reporting from Flash to Google Analytics
Custom Event Reporting from Flash to Google AnalyticsJoseph Labrecque
 
Yahoo! Frontend Building Blocks
Yahoo! Frontend Building BlocksYahoo! Frontend Building Blocks
Yahoo! Frontend Building BlocksSubramanyan Murali
 
JavaScript Library Overview
JavaScript Library OverviewJavaScript Library Overview
JavaScript Library Overviewjeresig
 
TAO DAYS - Development of an advanced item (IT Session)
TAO DAYS - Development of an advanced item (IT Session)TAO DAYS - Development of an advanced item (IT Session)
TAO DAYS - Development of an advanced item (IT Session)Open Assessment Technologies
 
RomaFramework Tutorial Basics
RomaFramework Tutorial BasicsRomaFramework Tutorial Basics
RomaFramework Tutorial BasicsLuca Garulli
 
TeamPage Beginner to Jedi, Jordan Frank
TeamPage Beginner to Jedi, Jordan FrankTeamPage Beginner to Jedi, Jordan Frank
TeamPage Beginner to Jedi, Jordan FrankTraction Software
 
JavaScript Library Overview
JavaScript Library OverviewJavaScript Library Overview
JavaScript Library Overviewjeresig
 

Ähnlich wie Josephj Open At Yahoo Nsysu2 (20)

Roma introduction and concepts
Roma introduction and conceptsRoma introduction and concepts
Roma introduction and concepts
 
Search Engines and Flash: Secrets, Tricks, and Black Magic
Search Engines and Flash: Secrets, Tricks, and Black MagicSearch Engines and Flash: Secrets, Tricks, and Black Magic
Search Engines and Flash: Secrets, Tricks, and Black Magic
 
Ieml dictionary
Ieml dictionaryIeml dictionary
Ieml dictionary
 
Yahoo! Application Platform Technical Deep Dive
Yahoo! Application Platform Technical Deep DiveYahoo! Application Platform Technical Deep Dive
Yahoo! Application Platform Technical Deep Dive
 
yui3 is Sexy - 使用 YUI 3 的 Sexy Part !
yui3 is Sexy - 使用 YUI 3 的 Sexy Part !yui3 is Sexy - 使用 YUI 3 的 Sexy Part !
yui3 is Sexy - 使用 YUI 3 的 Sexy Part !
 
Y!OS Overview and Deep Code Dive
Y!OS Overview and Deep Code DiveY!OS Overview and Deep Code Dive
Y!OS Overview and Deep Code Dive
 
From YUI3 to K2
From YUI3 to K2From YUI3 to K2
From YUI3 to K2
 
An Introduction To The Use Of Widgets in libraries
An Introduction To The Use Of Widgets in librariesAn Introduction To The Use Of Widgets in libraries
An Introduction To The Use Of Widgets in libraries
 
Build your web apps with yql and yui
Build your web apps with yql and yuiBuild your web apps with yql and yui
Build your web apps with yql and yui
 
covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...
covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...
covo.js : A JavaScript Library to Utilize Subject Headings and Thesauri on th...
 
JavaScript Libraries (Kings of Code)
JavaScript Libraries (Kings of Code)JavaScript Libraries (Kings of Code)
JavaScript Libraries (Kings of Code)
 
YAP, Open Hack Day, Bangalore 2011
YAP, Open Hack Day, Bangalore 2011YAP, Open Hack Day, Bangalore 2011
YAP, Open Hack Day, Bangalore 2011
 
Raptor 2
Raptor 2Raptor 2
Raptor 2
 
Custom Event Reporting from Flash to Google Analytics
Custom Event Reporting from Flash to Google AnalyticsCustom Event Reporting from Flash to Google Analytics
Custom Event Reporting from Flash to Google Analytics
 
Yahoo! Frontend Building Blocks
Yahoo! Frontend Building BlocksYahoo! Frontend Building Blocks
Yahoo! Frontend Building Blocks
 
JavaScript Library Overview
JavaScript Library OverviewJavaScript Library Overview
JavaScript Library Overview
 
TAO DAYS - Development of an advanced item (IT Session)
TAO DAYS - Development of an advanced item (IT Session)TAO DAYS - Development of an advanced item (IT Session)
TAO DAYS - Development of an advanced item (IT Session)
 
RomaFramework Tutorial Basics
RomaFramework Tutorial BasicsRomaFramework Tutorial Basics
RomaFramework Tutorial Basics
 
TeamPage Beginner to Jedi, Jordan Frank
TeamPage Beginner to Jedi, Jordan FrankTeamPage Beginner to Jedi, Jordan Frank
TeamPage Beginner to Jedi, Jordan Frank
 
JavaScript Library Overview
JavaScript Library OverviewJavaScript Library Overview
JavaScript Library Overview
 

Mehr von Joseph Chiang

不断归零的前端人生 - 2016 中国软件开发者大会
不断归零的前端人生 - 2016 中国软件开发者大会不断归零的前端人生 - 2016 中国软件开发者大会
不断归零的前端人生 - 2016 中国软件开发者大会Joseph Chiang
 
Automatic Functional Testing with Selenium and SauceLabs
Automatic Functional Testing with Selenium and SauceLabsAutomatic Functional Testing with Selenium and SauceLabs
Automatic Functional Testing with Selenium and SauceLabsJoseph Chiang
 
From Hacker to Programmer (w/ Webpack, Babel and React)
From Hacker to Programmer (w/ Webpack, Babel and React)From Hacker to Programmer (w/ Webpack, Babel and React)
From Hacker to Programmer (w/ Webpack, Babel and React)Joseph Chiang
 
JavaScript Code Quality
JavaScript Code QualityJavaScript Code Quality
JavaScript Code QualityJoseph Chiang
 
前端的未來 - 前端工程實務訓練
前端的未來 - 前端工程實務訓練前端的未來 - 前端工程實務訓練
前端的未來 - 前端工程實務訓練Joseph Chiang
 
Performance 入門 - 前端工程開發實務訓練
Performance 入門 - 前端工程開發實務訓練Performance 入門 - 前端工程開發實務訓練
Performance 入門 - 前端工程開發實務訓練Joseph Chiang
 
Debugging - 前端工程開發實務訓練
 Debugging - 前端工程開發實務訓練 Debugging - 前端工程開發實務訓練
Debugging - 前端工程開發實務訓練Joseph Chiang
 
Javascript 入門 - 前端工程開發實務訓練
Javascript 入門 - 前端工程開發實務訓練Javascript 入門 - 前端工程開發實務訓練
Javascript 入門 - 前端工程開發實務訓練Joseph Chiang
 
Node.js 入門 - 前端工程開發實務訓練
Node.js 入門 - 前端工程開發實務訓練Node.js 入門 - 前端工程開發實務訓練
Node.js 入門 - 前端工程開發實務訓練Joseph Chiang
 
前端工程開發實務訓練
前端工程開發實務訓練前端工程開發實務訓練
前端工程開發實務訓練Joseph Chiang
 
YUI 教學 - 前端工程開發實務訓練
YUI 教學 - 前端工程開發實務訓練YUI 教學 - 前端工程開發實務訓練
YUI 教學 - 前端工程開發實務訓練Joseph Chiang
 
CSS 入門 - 前端工程開發實務訓練
CSS 入門 - 前端工程開發實務訓練CSS 入門 - 前端工程開發實務訓練
CSS 入門 - 前端工程開發實務訓練Joseph Chiang
 
HTML 入門 - 前端工程開發實務訓練
HTML 入門 - 前端工程開發實務訓練HTML 入門 - 前端工程開發實務訓練
HTML 入門 - 前端工程開發實務訓練Joseph Chiang
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京Joseph Chiang
 
YUI is Sexy (for JSDC.tw)
YUI is Sexy (for JSDC.tw)YUI is Sexy (for JSDC.tw)
YUI is Sexy (for JSDC.tw)Joseph Chiang
 
YUI is Sexy - 使用 YUI 作為開發基礎
YUI is Sexy - 使用 YUI 作為開發基礎YUI is Sexy - 使用 YUI 作為開發基礎
YUI is Sexy - 使用 YUI 作為開發基礎Joseph Chiang
 

Mehr von Joseph Chiang (20)

不断归零的前端人生 - 2016 中国软件开发者大会
不断归零的前端人生 - 2016 中国软件开发者大会不断归零的前端人生 - 2016 中国软件开发者大会
不断归零的前端人生 - 2016 中国软件开发者大会
 
Let's Redux!
Let's Redux!Let's Redux!
Let's Redux!
 
Automatic Functional Testing with Selenium and SauceLabs
Automatic Functional Testing with Selenium and SauceLabsAutomatic Functional Testing with Selenium and SauceLabs
Automatic Functional Testing with Selenium and SauceLabs
 
From Hacker to Programmer (w/ Webpack, Babel and React)
From Hacker to Programmer (w/ Webpack, Babel and React)From Hacker to Programmer (w/ Webpack, Babel and React)
From Hacker to Programmer (w/ Webpack, Babel and React)
 
JavaScript Promise
JavaScript PromiseJavaScript Promise
JavaScript Promise
 
F2E for Enterprise
F2E for EnterpriseF2E for Enterprise
F2E for Enterprise
 
JavaScript Code Quality
JavaScript Code QualityJavaScript Code Quality
JavaScript Code Quality
 
F2E, the Keystone
F2E, the KeystoneF2E, the Keystone
F2E, the Keystone
 
前端的未來 - 前端工程實務訓練
前端的未來 - 前端工程實務訓練前端的未來 - 前端工程實務訓練
前端的未來 - 前端工程實務訓練
 
Performance 入門 - 前端工程開發實務訓練
Performance 入門 - 前端工程開發實務訓練Performance 入門 - 前端工程開發實務訓練
Performance 入門 - 前端工程開發實務訓練
 
Debugging - 前端工程開發實務訓練
 Debugging - 前端工程開發實務訓練 Debugging - 前端工程開發實務訓練
Debugging - 前端工程開發實務訓練
 
Javascript 入門 - 前端工程開發實務訓練
Javascript 入門 - 前端工程開發實務訓練Javascript 入門 - 前端工程開發實務訓練
Javascript 入門 - 前端工程開發實務訓練
 
Node.js 入門 - 前端工程開發實務訓練
Node.js 入門 - 前端工程開發實務訓練Node.js 入門 - 前端工程開發實務訓練
Node.js 入門 - 前端工程開發實務訓練
 
前端工程開發實務訓練
前端工程開發實務訓練前端工程開發實務訓練
前端工程開發實務訓練
 
YUI 教學 - 前端工程開發實務訓練
YUI 教學 - 前端工程開發實務訓練YUI 教學 - 前端工程開發實務訓練
YUI 教學 - 前端工程開發實務訓練
 
CSS 入門 - 前端工程開發實務訓練
CSS 入門 - 前端工程開發實務訓練CSS 入門 - 前端工程開發實務訓練
CSS 入門 - 前端工程開發實務訓練
 
HTML 入門 - 前端工程開發實務訓練
HTML 入門 - 前端工程開發實務訓練HTML 入門 - 前端工程開發實務訓練
HTML 入門 - 前端工程開發實務訓練
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京
 
YUI is Sexy (for JSDC.tw)
YUI is Sexy (for JSDC.tw)YUI is Sexy (for JSDC.tw)
YUI is Sexy (for JSDC.tw)
 
YUI is Sexy - 使用 YUI 作為開發基礎
YUI is Sexy - 使用 YUI 作為開發基礎YUI is Sexy - 使用 YUI 作為開發基礎
YUI is Sexy - 使用 YUI 作為開發基礎
 

Josephj Open At Yahoo Nsysu2

  • 1. NSYSU MIS 2009/3/5 josephj
  • 2. Hi! josephj • 2.5 F2E • 0.5 Evangelist • RD @josephj6802 http://josephj.com josephj@yahoo-inc.com
  • 5. Open APIs Yahoo!
  • 6. Open API AJAX API Open API
  • 7. Yahoo! Format Flickr
  • 11. <script src=”http://api.flickr.com/services/feeds/photos_public.gne? &format=json&jsoncallback=getFlickrData ”></script> tags=
  • 13.
  • 14. API Feed Schema
  • 15. Service ...
  • 16. JavaScript HTML ...
  • 18. Pipes Remix Feed
  • 20. ... CLI
  • 22.
  • 25. YUI Library Web2.0
  • 26. UI UI YUI UI Button Def. But. Menu Label Text Field Label Label Label Text Area click me
  • 27. YUI
  • 28.
  • 29.
  • 33.
  • 34.
  • 36.
  • 38. Developer Network Home Help Site Search Design Pattern Library Yahoo! Developer Network > Design Pattern Library > Auto Complete Auto Complete QUICK JUMP Problem Summary Solution The user needs to enter an item into a text box which could ambiguous or hard to Rationale remember and therefore has the potential to be mis-typed. Accessibility EXAMPLE: RELATED PATTERNS Calendar Picker AS USED ON YAHOO! Yahoo! Mail Beta Yahoo! Maps Beta Yahoo! My Web 2 BLOG Blog Article Y! UI CODE EXAMPLES Auto Complete Component Auto completion of contacts in Yahoo! Mail Beta Y! Search (JSON) Y! Search (XML) Use When In-Memory (array) In-Memory (function) The suggestions can be pulled from a manageable set of data. Flickr (XML) The input item can be entered in multiple ways. Flat data Playground The input item can be matched with a specific data item in the system. Speed and accuracy of entry is an important goal. Show with revisions The total number of items would be too large or inconvenient for displaying in a standard drop down box. Solution This work is licensed under a Creative Commons Attribution 2.5 License. Layout Use a standard text box for input. Label the text box to match the user's expection of what field will be searched against. Interaction As the user types, display a list of suggested items that most closely match what the user has typed. Continue to narrow or broaden the list of suggested items based on the user's input. Display the suggested items list in a drop down box directly underneath the text box. The suggested items list may be based on the complete set of data or more narrowly based on other criteria such as each item's frequency of use. When available, show multiple fields of information for each suggested item. In the Yahoo! Mail example above, two fields are presented: the contact's full name and the contact's email address. Highlight the closest matching item within the suggested items list. Show the matched item as first in the list. Highlight the background of the matched item. When multiple fields are shown for each suggested item the match may occur with the initial characters of any of the fields presented. For each suggested item in the suggest items list show the characters that exactly match the user's input. When multiple fields are shown in a suggested item the matching characters may appear in any of the fields presented. In the example below, the characters 'Yu' have been typed by the user. The match is on three items. Notice that the first item matched on the contact's email address '<yuiblogger.com>' whereas the second and third items are matched on the contact's name (e.g., 'Yusef Jones'.) Allow the user to delete a character of input and display the previous suggested items list. Allow the user to complete the input field by pressing the Tab key or Enter; key. The current matched item in the suggested items list will be accepted as the value for the input field. Allow the user to optionally highlight an item of their choice from the suggested item list with the mouse or with the up and down arrow keys. Allow the user to cancel the suggested items list by pressing the Esc key. The drop down list will close. Subsequently pressing the Tab key or Enter key will accept the value from the input field. However, typing more characters after hitting the Esc key will restart the auto completion behavior displaying the suggested items list. If multiple input items are allowed in a single input field, allow the user to use the Comma key to separate each input item. Pressing the comma key will complete an individual item match. The auto complete behavior restarts when the user begins typing characters for the next input item. Rationale Reducing the number of keystrokes allows for faster user input. Showing additional formatting information in the suggested items list (like the email address in the example above) removes ambiguity. Continual feedback helps the user narrow in on the correct choice. Accessibility Label the text box to match the user's expection of what field will be searched against. Allow the user to highlight a desired match either using a mouse or navigating to it with the up or down arrow keys. Allow the user to complete the form by pressing the Tab or Enter keys. Allow the user to cancel suggestions by pressing the Esc key. Allow the input field to receive keyboard focus by pressing the Tab key. Once the edit field is in focus make sure that the focus stays in the edit field during autocomplete. Do not send any page refreshes when updating the field (page refreshes will signal assistive technology to start reading the page again.) The insertion cursor should move as the left/right arrow keys are pressed in the text field. Copyright © 2005-2007 Yahoo! Inc. All rights reserved. Privacy Policy - Terms of Service - Copyright Policy - Job Openings
  • 39. UI
  • 40.
  • 41.
  • 42. YUI Web OSDC
  • 44.
  • 45. +
  • 46. YUI
  • 47.
  • 48.
  • 49.
  • 50. YUI 300
  • 51. IDE ...
  • 53. YUI
  • 54. YUI BSD License
  • 55. YUI
  • 56.
  • 58. 1. YUI DIV & CSS Layout
  • 59. 950px 240px 50%, 50%
  • 60.
  • 61.
  • 64. 2 YUI http://josephj.com/training/nsysu/yui-menu.html 1. new YAHOO.widget.MenuBar([ id]); YUI 2. render()
  • 65. 2 YUI http://josephj.com/training/nsysu/yui-menu.html (true false) autosubmenudisplay hidedelay n (true false) lazyload
  • 66. 3. YUI UI
  • 67. YUI Button HTML YUI Button
  • 68. 3 YUI http://josephj.com/training/nsysu/yui-button.html 1. new YAHOO.widget.Button([ id]);
  • 69. 4. YUI Web 2.0
  • 70. YUI YAHOO.widget.Dialog YAHOO.widget.Panel YAHOO.widget.Panel YAHOO.widget.SimpleDialog
  • 71. 4 YUI http://josephj.com/training/nsysu/yui-panel.html 1. var oPanel = new YAHOO.widget.Panel([ id], [ ]); #panel 2. oPanel.render(document.body) append 3. oButton.addListener(‘click’, onButtonClick) onButtonClick oPanel.show();
  • 72. 4 YUI http://josephj.com/training/nsysu/yui-panel.html close fixedcenter modal underlay shadow’, ‘matte’ visible width { 1: 1, 2: 2}
  • 76. 5 YUI Get http://josephj.com/training/nsysu/yui-get.html
  • 79.
  • 81. Mail/Contact API Local Yahoo!
  • 82. Yahoo! Pat Jameson Pat Jameson Pat Jameson
  • 83. Y!Sports +
  • 85.
  • 86. Yahoo! Cool
  • 87. More?
  • 91. OpenID SSO
  • 92. Quick Summary • Open APIs Yahoo! • YUI Web 2.0 • YAP Yahoo! Yahoo! Powerful