SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Ähnlich wie 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
 

Ähnlich wie 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
 

Mehr von Satoshi Kikuchi

Mehr von 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
 

Kürzlich hochgeladen

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
 
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
 
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
 

Kürzlich hochgeladen (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...
 
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
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
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)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 

SwapSkills css3

Hinweis der Redaktion