SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
How else does Adobe help with HTML5 development?
      Bhakti Pingale | Platform Evangelist, Adobe




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Agenda




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Adobe Muse

       Why?
       Dreamweaver is God sent
       No replacement
       But….



                Design and Publish HTML websites
                       without writing code



© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
So Adobe Muse is about…


       Plan
       Design
       Publish




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Plan


       Sitemaps
       Master Pages
       Site-wide properties




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Design


       Familiar Adobe tools
       Dynamic page resizing
       Image optimization
       Round-trip editing
       Pin to browser
       Web Safe fonts
       Asset Management
       CSS styles generated by Muse


© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Design


       Auto-generated navigation
       Defined object states
       Embedded HTML and Anchor links
       SlideShows
       Tabbed and accordion panels and LightBoxes
       Trigger and target - Hotspot




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Adobe Business Catalyst


       Adobe Business Catalyst is the hosting and publishing
        platform for trials created in Muse
       $9/month
       Reliable, high performance hosting
       Flexible billing options




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Publish


       Trial sites for testing
       Adobe hosting - Reduce time from design to
        deployment
       Publish and update your website from within Muse
       Browser compatibility
       Export to a provider




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Muse Showcases




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Upcoming Events

       Muse Jam Session: Adding Dynamic Content with Arbitrary HTML – Sep 7
       Muse Jam Session: Configuring and Styling Muse Widgets – Sep 14




                                                         http://muse.adobe.com




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Story




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Wallaby

       Adobe AIR based tool
       FLA                                       HTML5
       Creates corresponding JS and CSS
       Art work and Animations contained in FLA is converted
        to SVG and CSS-3 based Animation




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Limitations


       Filters except for alpha
       Blending
       Dynamic masks
       Some TLF texts
       3D Transforms and tweens
       Audio – Video
       Actionscript
       Armatures


© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Support


       All types of vector art and images
       Classic text
       Instance name
       Full movie clip and graphics support
       Full support for graphic and motion tweens including
        guide layers
       Shape tweens
       Buttons with roll over and down states


© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Best practices


       Do not Mix Symbol instances, images and graphics in
        the same layer
       Do not rely on frame by frame animation
       Try to use tweens as much as possible
       Minimize the use of Shape tweening and armatures
       Keeping masking to the minimum
       Avoid animated scaling when targeting Chrome




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Wallaby generated HTML content structure


  <head>
         <meta charset="utf-8"></meta>
         <link href="candle.css" type="text/css"
        rel="stylesheet"></link>
         <script type="text/javascript" src="jquery-1.4.2.js"></script>
         <script type="text/javascript" src="candle.js"></script>
     </head>




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Major classes in Wallaby generated CSS


       Wlby_movie: the stage, defines the drawing area
       Wlby sprite: corresponds to a layer, resets its elements
        once it times out
       Wlby_graphic: for layers that don’t repeat
       Wlby_fs: corresponds to a keyframe. When it times out,
        it will hide itself and make the next sibling active
       Wlby_button: surrounds graphical elements for a
        button



© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
http://labs.adobe.com/technologies/wallaby/




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
CSS 3 Regions


       Web – a rich repository
       Proposals to W3C CSS working group
       Created Prototype Implementation using WebKit
       Disclaimer




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Extensions


       Threading content: Content that flows from one area
        to another.
       Arbitrarily shaped containers: Text displayed in non-
        rectangular areas.
       Arbitrarily shaped exclusions: Text can wrap around
        arbitrary shapes.
       Region styling: Styling content depending on the area
        in which it flows.



© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Content Flow




  CSS                                                                         HTML
  #source {                                                                   <div id="source">
     flow: "main-thread";                                                       <p>Lorem ipsum dolor [...]</p>
  }                                                                           </div>
  .region {
      content: from(main-thread);                                             <div id="region1" class="region"></div>
      background: #C5DFF0;                                                    <div id="region2" class="region"></div>
  }                                                                           <div id="region3" class="region"></div>

© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Arbitrary Shape Containers




    CSS                                                                       HTML
    .circle{                                                                  <div class="circle"></div>
    /* shape the element as a circle */
    wrap-shape: polygon(0px, 150px /* ...more points */);                     <div class="heart"></div>
    wrap-shape-mode: content; }

    .heart{
    /* shape the element as a heart */
    wrap-shape: polygon(150px, 32px /* ...more points */);
    wrap-shape-mode: content;                                                 * webkit-render-wrap-shape:
    }                                                                         auto;
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Arbitrary Shape Exclusions


                                                                              CSS
                                                                              .exclusion{
                                                                              /* flow text around this
                                                                              element */
                                                                              wrap-shape-mode:
                                                                              around;
                                                                              }

                                                                              HTML
                                                                              <div class="exclusion
                                                                              circle">
                                                                              <p>Lorem ipsum dolor
                                                                              [...]</p>
                                                                              </div>
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Region Styling
  CSS
  p{
        color: gray;}
  @region-style #region_1 {
       p{
              color: #0C3D5F; }
  }
  HTML
  <div id="article">
  <h1>Introduction</h1>
  <p>This is an example [...]</p>
  </div>
  <div id="region_1"></div>
  <div id="region_2"></div>
  <div id="region_3"></div>
  <div id="region_4"></div>
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.   Region styling is not yet implemented in the WebKit prototype that is
                                                                              currently available on Adobe Labs
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
http://labs.adobe.com/technologies/cssregions/




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
Thank you!
                                                                              bhakti@adobe.com
                                                                                @bhaktipingale
                                                                              http://pingtalks.com




© 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Más contenido relacionado

La actualidad más candente

How browser engines work?
How browser engines work?How browser engines work?
How browser engines work?
haricot
 
Theming Drupal 6 - An Introduction to the Basics
Theming Drupal 6 - An Introduction to the BasicsTheming Drupal 6 - An Introduction to the Basics
Theming Drupal 6 - An Introduction to the Basics
Erik Baldwin
 
Dive Into HTML5
Dive Into HTML5Dive Into HTML5
Dive Into HTML5
Doris Chen
 

La actualidad más candente (17)

Less
LessLess
Less
 
How browser engines work?
How browser engines work?How browser engines work?
How browser engines work?
 
Steph's Html5 and css presentation
Steph's Html5 and css presentationSteph's Html5 and css presentation
Steph's Html5 and css presentation
 
Theming Drupal 6 - An Introduction to the Basics
Theming Drupal 6 - An Introduction to the BasicsTheming Drupal 6 - An Introduction to the Basics
Theming Drupal 6 - An Introduction to the Basics
 
Miha Lesjak Mobilizing The Web with Web Runtime
Miha Lesjak Mobilizing The Web with Web RuntimeMiha Lesjak Mobilizing The Web with Web Runtime
Miha Lesjak Mobilizing The Web with Web Runtime
 
Introduction to web_design_cs_final_ason
Introduction to web_design_cs_final_asonIntroduction to web_design_cs_final_ason
Introduction to web_design_cs_final_ason
 
SEBLOD CCK Presentation By Simon Dowdles - Joomla! Day South Africa 2011
SEBLOD CCK Presentation By Simon Dowdles - Joomla! Day South Africa 2011SEBLOD CCK Presentation By Simon Dowdles - Joomla! Day South Africa 2011
SEBLOD CCK Presentation By Simon Dowdles - Joomla! Day South Africa 2011
 
Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3
 
Html css
Html cssHtml css
Html css
 
Dive Into HTML5
Dive Into HTML5Dive Into HTML5
Dive Into HTML5
 
Web dev
Web devWeb dev
Web dev
 
INFT132 093 05 Cascading Style Sheets
INFT132 093 05 Cascading Style SheetsINFT132 093 05 Cascading Style Sheets
INFT132 093 05 Cascading Style Sheets
 
Develop Engaging and High Performance Portal Themes That Power Exceptional Di...
Develop Engaging and High Performance Portal Themes That Power Exceptional Di...Develop Engaging and High Performance Portal Themes That Power Exceptional Di...
Develop Engaging and High Performance Portal Themes That Power Exceptional Di...
 
Dojo - from web page to web apps
Dojo - from web page to web appsDojo - from web page to web apps
Dojo - from web page to web apps
 
css v1 guru
css v1 gurucss v1 guru
css v1 guru
 
Week 05 Web, App and Javascript_Brandon, S.H. Wu
Week 05 Web, App and Javascript_Brandon, S.H. WuWeek 05 Web, App and Javascript_Brandon, S.H. Wu
Week 05 Web, App and Javascript_Brandon, S.H. Wu
 
Config management
Config managementConfig management
Config management
 

Destacado

Servicios personal shopper
Servicios personal shopperServicios personal shopper
Servicios personal shopper
melisshka
 
Mejora competitividad Sectores Manufactureros
Mejora competitividad Sectores ManufacturerosMejora competitividad Sectores Manufactureros
Mejora competitividad Sectores Manufactureros
Carmen Muñoz Castellanos
 

Destacado (9)

Slide share Vestuario digital
Slide share Vestuario digitalSlide share Vestuario digital
Slide share Vestuario digital
 
Regala Asesoría de imagen y personal shopper
Regala Asesoría de imagen y personal shopperRegala Asesoría de imagen y personal shopper
Regala Asesoría de imagen y personal shopper
 
Servicios personal shopper
Servicios personal shopperServicios personal shopper
Servicios personal shopper
 
Propuesta de vestuario
Propuesta de vestuario Propuesta de vestuario
Propuesta de vestuario
 
Revista Anual - Diseño de Vestuario y Textiles 2009
Revista Anual - Diseño de Vestuario y Textiles 2009Revista Anual - Diseño de Vestuario y Textiles 2009
Revista Anual - Diseño de Vestuario y Textiles 2009
 
Revista Anual - Diseño de Vestuario y Textiles 2010
Revista Anual - Diseño de Vestuario y Textiles 2010Revista Anual - Diseño de Vestuario y Textiles 2010
Revista Anual - Diseño de Vestuario y Textiles 2010
 
Diplomado en administracion y gestion mencion comercializacion y mkt
Diplomado en administracion y gestion mencion comercializacion y mktDiplomado en administracion y gestion mencion comercializacion y mkt
Diplomado en administracion y gestion mencion comercializacion y mkt
 
Mejora competitividad Sectores Manufactureros
Mejora competitividad Sectores ManufacturerosMejora competitividad Sectores Manufactureros
Mejora competitividad Sectores Manufactureros
 
Catálogo textil y vestuario
Catálogo textil y vestuarioCatálogo textil y vestuario
Catálogo textil y vestuario
 

Similar a How else does Adobe help in HTML5 development?

GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simple
JagadishBabuParri
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Erin M. Kidwell
 
Dynamic User Interfaces for Desktop and Mobile
Dynamic User Interfaces for Desktop and MobileDynamic User Interfaces for Desktop and Mobile
Dynamic User Interfaces for Desktop and Mobile
peychevi
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The Nextweb
George Kanellopoulos
 

Similar a How else does Adobe help in HTML5 development? (20)

Advanced EPUB creation for iPad with Adobe InDesign CC - Digital Book World 2014
Advanced EPUB creation for iPad with Adobe InDesign CC - Digital Book World 2014Advanced EPUB creation for iPad with Adobe InDesign CC - Digital Book World 2014
Advanced EPUB creation for iPad with Adobe InDesign CC - Digital Book World 2014
 
Html5
Html5Html5
Html5
 
Presentation about html5 css3
Presentation about html5 css3Presentation about html5 css3
Presentation about html5 css3
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 
Html5
Html5Html5
Html5
 
Html5 & less css
Html5 & less cssHtml5 & less css
Html5 & less css
 
html5_css3
html5_css3html5_css3
html5_css3
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simple
 
Html5
Html5Html5
Html5
 
Sightly_techInsight
Sightly_techInsightSightly_techInsight
Sightly_techInsight
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
Dynamic User Interfaces for Desktop and Mobile
Dynamic User Interfaces for Desktop and MobileDynamic User Interfaces for Desktop and Mobile
Dynamic User Interfaces for Desktop and Mobile
 
Solving Common Web Component Problems - Simon MacDonald
Solving Common Web Component Problems - Simon MacDonaldSolving Common Web Component Problems - Simon MacDonald
Solving Common Web Component Problems - Simon MacDonald
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS Tricks
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and Development
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The Nextweb
 
Web components
Web componentsWeb components
Web components
 

Último

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Último (20)

Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

How else does Adobe help in HTML5 development?

  • 1. How else does Adobe help with HTML5 development? Bhakti Pingale | Platform Evangelist, Adobe © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 2. Agenda © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 3. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 4. Adobe Muse  Why?  Dreamweaver is God sent  No replacement  But…. Design and Publish HTML websites without writing code © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 5. So Adobe Muse is about…  Plan  Design  Publish © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 6. Plan  Sitemaps  Master Pages  Site-wide properties © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 7. Design  Familiar Adobe tools  Dynamic page resizing  Image optimization  Round-trip editing  Pin to browser  Web Safe fonts  Asset Management  CSS styles generated by Muse © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 8. Design  Auto-generated navigation  Defined object states  Embedded HTML and Anchor links  SlideShows  Tabbed and accordion panels and LightBoxes  Trigger and target - Hotspot © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 9. Adobe Business Catalyst  Adobe Business Catalyst is the hosting and publishing platform for trials created in Muse  $9/month  Reliable, high performance hosting  Flexible billing options © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 10. Publish  Trial sites for testing  Adobe hosting - Reduce time from design to deployment  Publish and update your website from within Muse  Browser compatibility  Export to a provider © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 11. Muse Showcases © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 12. Upcoming Events  Muse Jam Session: Adding Dynamic Content with Arbitrary HTML – Sep 7  Muse Jam Session: Configuring and Styling Muse Widgets – Sep 14 http://muse.adobe.com © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 13. Story © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 14. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 15. Wallaby  Adobe AIR based tool  FLA HTML5  Creates corresponding JS and CSS  Art work and Animations contained in FLA is converted to SVG and CSS-3 based Animation © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 16. Limitations  Filters except for alpha  Blending  Dynamic masks  Some TLF texts  3D Transforms and tweens  Audio – Video  Actionscript  Armatures © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 17. Support  All types of vector art and images  Classic text  Instance name  Full movie clip and graphics support  Full support for graphic and motion tweens including guide layers  Shape tweens  Buttons with roll over and down states © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 18. Best practices  Do not Mix Symbol instances, images and graphics in the same layer  Do not rely on frame by frame animation  Try to use tweens as much as possible  Minimize the use of Shape tweening and armatures  Keeping masking to the minimum  Avoid animated scaling when targeting Chrome © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 19. Wallaby generated HTML content structure <head> <meta charset="utf-8"></meta> <link href="candle.css" type="text/css" rel="stylesheet"></link> <script type="text/javascript" src="jquery-1.4.2.js"></script> <script type="text/javascript" src="candle.js"></script> </head> © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 20. Major classes in Wallaby generated CSS  Wlby_movie: the stage, defines the drawing area  Wlby sprite: corresponds to a layer, resets its elements once it times out  Wlby_graphic: for layers that don’t repeat  Wlby_fs: corresponds to a keyframe. When it times out, it will hide itself and make the next sibling active  Wlby_button: surrounds graphical elements for a button © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 21. http://labs.adobe.com/technologies/wallaby/ © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 22. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 23. CSS 3 Regions  Web – a rich repository  Proposals to W3C CSS working group  Created Prototype Implementation using WebKit  Disclaimer © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 24. Extensions  Threading content: Content that flows from one area to another.  Arbitrarily shaped containers: Text displayed in non- rectangular areas.  Arbitrarily shaped exclusions: Text can wrap around arbitrary shapes.  Region styling: Styling content depending on the area in which it flows. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 25. Content Flow CSS HTML #source { <div id="source"> flow: "main-thread"; <p>Lorem ipsum dolor [...]</p> } </div> .region { content: from(main-thread); <div id="region1" class="region"></div> background: #C5DFF0; <div id="region2" class="region"></div> } <div id="region3" class="region"></div> © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 26. Arbitrary Shape Containers CSS HTML .circle{ <div class="circle"></div> /* shape the element as a circle */ wrap-shape: polygon(0px, 150px /* ...more points */); <div class="heart"></div> wrap-shape-mode: content; } .heart{ /* shape the element as a heart */ wrap-shape: polygon(150px, 32px /* ...more points */); wrap-shape-mode: content; * webkit-render-wrap-shape: } auto; © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 27. Arbitrary Shape Exclusions CSS .exclusion{ /* flow text around this element */ wrap-shape-mode: around; } HTML <div class="exclusion circle"> <p>Lorem ipsum dolor [...]</p> </div> © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 28. Region Styling CSS p{ color: gray;} @region-style #region_1 { p{ color: #0C3D5F; } } HTML <div id="article"> <h1>Introduction</h1> <p>This is an example [...]</p> </div> <div id="region_1"></div> <div id="region_2"></div> <div id="region_3"></div> <div id="region_4"></div> © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential. Region styling is not yet implemented in the WebKit prototype that is currently available on Adobe Labs
  • 29. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 30. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 31. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 32. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 33. © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 34. http://labs.adobe.com/technologies/cssregions/ © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.
  • 35. Thank you! bhakti@adobe.com @bhaktipingale http://pingtalks.com © 2011 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.