SlideShare a Scribd company logo
1 of 95
3
Swap SKILLS

CSS
Progressive Enhancemnt
      Web



                Takashi Kikuchi
Salem,Mass




       Takashi Kikuchi
3




    Takashi Kikuchi
3




    Takashi Kikuchi
3




    Takashi Kikuchi
allweb




         Takashi Kikuchi
Takashi Kikuchi
Takashi Kikuchi
4




    Takashi Kikuchi
3
&
 Progressive
Enhancement


Css     Takashi Kikuchi
Css History


      Takashi Kikuchi
1996
 Css1


   Takashi Kikuchi
1997
 Css2


   Takashi Kikuchi
CR
Css2.1


    Takashi Kikuchi
Takashi Kikuchi
Css3


  Takashi Kikuchi
CSS3


       Takashi Kikuchi
Ie6 ?
IE7 ?

   Takashi Kikuchi
Ie6/7




        Takashi Kikuchi
18inch
Webkit
            User
   ZOOM
Mobile TV  Agent
iiXGA  Gecko
            DSi
    Trident
42inch                     iPh
         Takashi Kikuchi
2003.1
MOSe

    Takashi Kikuchi
Mozilla
 Opera Safari
enhancement

       Takashi Kikuchi
Dave Shea

 Css Zen Garden




Takashi Kikuchi
Takashi Kikuchi
2003.10
 Progressive
Enhancement

      Takashi Kikuchi
,TX
 SXSW




Takashi Kikuchi
Progressive
Enhancement
     vs
  Graceful
Degradation

       Takashi Kikuchi
Content=”                    ”

                                                                           Presentation=”CSS”

                                                                           Client-side scripting=”JavaScript”




A List Apart:
http://www.alistapart.com/articles/understandingprogressiveenhancement/


                                                                          Takashi Kikuchi
Progressive
Enhancement
     ≒
 Graceful
Degradation


         Takashi Kikuchi
Graceful
Degradation
Progressive
Enhancement
Sample




Takashi Kikuchi
YUI




Takashi Kikuchi
CSS3


  Takashi Kikuchi
Third Time
  Lucky
     -Andy Clarke-
CSS3
Selectors

     Takashi Kikuchi
Attribute
Selectors

     Takashi Kikuchi
<ul>
<li>
<a class=”pdf” href=quot;xxxx.pdfquot;>XXX(PDF20KB)</a>
</li>
</ul>

<ul>
<li>
<a class=”mail” href=quot;mailto:quot;>OO@OOO</a>
</li>
</ul>




     Takashi Kikuchi
a[href$=quot;.pdfquot;]{
  padding-right: 20px;
  background: transparent
  url(pdf.png) no-repeat 100% 50%;
}

a[href^=quot;mailto:quot;]{
  padding-right: 20px;
  background: transparent
  url(email.png) no-repeat 100% 50%;
}




    Takashi Kikuchi
demo


  Takashi Kikuchi
E:Nth-Child()


       Takashi Kikuchi
E:Nth-Child()
‣n

‣ HTML    JavaScript

‣ (odd)         (even)




                         Takashi Kikuchi
<table>
<tr class=”odd”>    </tr>
<tr class=”even”>    </tr>
<tr class=”odd”>    </tr>
<tr class=”even”>    </tr>
</table>




  Takashi Kikuchi
tr:nth-child(even){
background-color: #;
}

tr:nth-child(odd){
background-color: #;
}

<table>
<tr>       </tr>
<tr>       </tr>
</table>



  Takashi Kikuchi
demo


  Takashi Kikuchi
E:last-Child()


        Takashi Kikuchi
E:last-Child()
‣



‣ HTML   JavaScript




                      Takashi Kikuchi
CSS3
Properties

     Takashi Kikuchi
Box-shadow


     Takashi Kikuchi
Box-shadow
‣

‣ -webkit-box-shadow: 2px 2px 2px #aaa;

‣
demo


  Takashi Kikuchi
Border-Radius


       Takashi Kikuchi
Border-Radius

•       border

•
•   -moz-border-radius-topleft

•   (-webkit-)border-top-left-radius
demo


  Takashi Kikuchi
Web fonts


     Takashi Kikuchi
Web fonts
•@font-face
 • IE eot         IE4

  • Firefox3.1
     • Opera10a   SVG


                    Takashi Kikuchi
html{
 font-family: sans-serif;
 }




  Takashi Kikuchi
@font-face {
font-family: VL-PGothic-Regular;
src: url(VL-PGothic-Regular.ttf)
format(quot;truetypequot;);
}




  Takashi Kikuchi
demo


  Takashi Kikuchi
::SCROLL
SCROLL
::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}


             Takashi Kikuchi
demo


  Takashi Kikuchi
Math


  Takashi Kikuchi
Math

•
•   ,    2em,   30px
Math

#main{
width: calc(100% - 200px);
}
SVG
SVG
‣
    ‣

‣
    ‣ native

‣
    ‣ CSS

                Takashi Kikuchi
Gradient
Gradient
‣
    ‣ -webkit-box-reflect
‣
    ‣ webkit-mask
    ‣ Mozilla with SVG
‣
    ‣ -webkit-gradient
    ‣ Opera SVG
                     Takashi Kikuchi
‣http://files.myopera.com/chaals/0604/Newmins.svg




                             Takashi Kikuchi
Transform


     Takashi Kikuchi
Transform
• rotate( ) deg, rad
• skew( )
• scale(         )

• translate( )
• matrix(      )



                       Takashi Kikuchi
Transform-
     origin
• tnransform-origin
•        50% 50%




                      Takashi Kikuchi
demo


  Takashi Kikuchi
Transition


     Takashi Kikuchi
Transition
•
•
•
• -webkit-transition:
 background-color, .5s liner;



                    Takashi Kikuchi
demo


  Takashi Kikuchi
Animation
Animation
‣
    ‣ -webkit-box-reflect
‣
    ‣ webkit-mask
    ‣ Mozilla with SVG
‣
    ‣ -webkit-gradient
    ‣ Opera SVG
                     Takashi Kikuchi
demo


  Takashi Kikuchi
CSS3




  Takashi Kikuchi
CSS3
‣               :
    ‣-webkit-, -moz-, -ms-,-o-,

‣         web       :

                        CSS
    ‣




                        Takashi Kikuchi
CSS3

‣ CSS3
 ‣
 ‣
 ‣
 ‣ invalid



               Takashi Kikuchi
CSS3

‣ CSS3
 ‣
 ‣
 ‣
 ‣



           Takashi Kikuchi
demo


  Takashi Kikuchi
MAX


  Takashi Kikuchi
demo


  Takashi Kikuchi
From now


    Takashi Kikuchi
CSS



  Takashi Kikuchi
-webkit-   -ms-   -moz-




                  Takashi Kikuchi
CSS3



       Takashi Kikuchi
Adobe Max09
Takashi Kikuchi
Takashi Kikuchi
Takashi Kikuchi
More Read

http://old.macedition.com/cb/cb_20030616.php
http://www.mezzoblue.com/archives/2003/06/25/mose/
http://developer.yahoo.com/yui/articles/gbs/




                           Takashi Kikuchi

More Related Content

Similar to SwapSkills css3

[A5]deview 2012 pt hds webkit_gpu
[A5]deview 2012 pt hds webkit_gpu[A5]deview 2012 pt hds webkit_gpu
[A5]deview 2012 pt hds webkit_gpu
NAVER D2
 
Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
Even Wu
 

Similar to SwapSkills css3 (20)

Hardboiled Web Design
Hardboiled Web DesignHardboiled Web Design
Hardboiled Web Design
 
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comA brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
 
[A5]deview 2012 pt hds webkit_gpu
[A5]deview 2012 pt hds webkit_gpu[A5]deview 2012 pt hds webkit_gpu
[A5]deview 2012 pt hds webkit_gpu
 
パフォーマンスから考えるSass/Compassの導入・運用
パフォーマンスから考えるSass/Compassの導入・運用パフォーマンスから考えるSass/Compassの導入・運用
パフォーマンスから考えるSass/Compassの導入・運用
 
Basics of Rich Internet Applications
Basics of Rich Internet ApplicationsBasics of Rich Internet Applications
Basics of Rich Internet Applications
 
Degrafa Beta 3 - 360|MAX
Degrafa Beta 3 - 360|MAXDegrafa Beta 3 - 360|MAX
Degrafa Beta 3 - 360|MAX
 
CSS3: Ready for Primetime?
CSS3: Ready for Primetime?CSS3: Ready for Primetime?
CSS3: Ready for Primetime?
 
Metasepi team meeting #20: Start! ATS programming on MCU
Metasepi team meeting #20: Start! ATS programming on MCUMetasepi team meeting #20: Start! ATS programming on MCU
Metasepi team meeting #20: Start! ATS programming on MCU
 
Basics of html5, data_storage, css3
Basics of html5, data_storage, css3Basics of html5, data_storage, css3
Basics of html5, data_storage, css3
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
 
RWD in the Wild
RWD in the WildRWD in the Wild
RWD in the Wild
 
CSS3 Ready for Primetime
CSS3 Ready for PrimetimeCSS3 Ready for Primetime
CSS3 Ready for Primetime
 
HTML5 - A Whirlwind tour
HTML5 - A Whirlwind tourHTML5 - A Whirlwind tour
HTML5 - A Whirlwind tour
 
Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
 
Bridging the gap between designers and developers at the Guardian
Bridging the gap between designers and developers at the GuardianBridging the gap between designers and developers at the Guardian
Bridging the gap between designers and developers at the Guardian
 
AtlasCamp 2014: Static Connect Add-ons
AtlasCamp 2014: Static Connect Add-onsAtlasCamp 2014: Static Connect Add-ons
AtlasCamp 2014: Static Connect Add-ons
 
The Future of CSS
The Future of CSSThe Future of CSS
The Future of CSS
 
NYC WebPerf Meetup Feb 2020 - Measuring the Adoption of Web Performance Techn...
NYC WebPerf Meetup Feb 2020 - Measuring the Adoption of Web Performance Techn...NYC WebPerf Meetup Feb 2020 - Measuring the Adoption of Web Performance Techn...
NYC WebPerf Meetup Feb 2020 - Measuring the Adoption of Web Performance Techn...
 
Implementing Awesome: An HTML5/CSS3 Workshop
Implementing Awesome: An HTML5/CSS3 WorkshopImplementing Awesome: An HTML5/CSS3 Workshop
Implementing Awesome: An HTML5/CSS3 Workshop
 
Css3 101
Css3 101Css3 101
Css3 101
 

More from Satoshi Kikuchi

More from Satoshi Kikuchi (16)

Foresee 見極めること
Foresee 見極めることForesee 見極めること
Foresee 見極めること
 
Responsive Web Design HTML5勉強会
Responsive Web Design HTML5勉強会Responsive Web Design HTML5勉強会
Responsive Web Design HTML5勉強会
 
The State of Web Development
The State of Web DevelopmentThe State of Web Development
The State of Web Development
 
The State Of Web Development (data only)
The State Of Web Development (data only)The State Of Web Development (data only)
The State Of Web Development (data only)
 
Html5 wh
Html5 whHtml5 wh
Html5 wh
 
サルでもできるWebデザイン:SwapSkills
サルでもできるWebデザイン:SwapSkillsサルでもできるWebデザイン:SwapSkills
サルでもできるWebデザイン:SwapSkills
 
サルでもできるウェブデザイン : SwapSkills 2010 Vol01
サルでもできるウェブデザイン : SwapSkills 2010 Vol01サルでもできるウェブデザイン : SwapSkills 2010 Vol01
サルでもできるウェブデザイン : SwapSkills 2010 Vol01
 
Html5 Loading
Html5 LoadingHtml5 Loading
Html5 Loading
 
Html5
Html5Html5
Html5
 
Make your website 2 times faster
Make your website 2 times fasterMake your website 2 times faster
Make your website 2 times faster
 
WDE08 State of the web
WDE08 State of the webWDE08 State of the web
WDE08 State of the web
 
WDE08 BULLETPROOF A to Z
WDE08 BULLETPROOF A to ZWDE08 BULLETPROOF A to Z
WDE08 BULLETPROOF A to Z
 
WDE08 Designing for interaction with Ajax
WDE08 Designing for interaction with AjaxWDE08 Designing for interaction with Ajax
WDE08 Designing for interaction with Ajax
 
WDE09 State of The Web Japanese version
WDE09 State of The Web Japanese versionWDE09 State of The Web Japanese version
WDE09 State of The Web Japanese version
 
WDE09 state of the web panel discussion
WDE09 state of the web panel discussionWDE09 state of the web panel discussion
WDE09 state of the web panel discussion
 
WDE09 The usability for Japan and overseas
WDE09  The usability for Japan and overseasWDE09  The usability for Japan and overseas
WDE09 The usability for Japan and overseas
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Recently uploaded (20)

Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
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
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 

SwapSkills css3

Editor's Notes