Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Illustration with CSS

Lynn Fisher
December 05, 2015

Illustration with CSS

You can use the CSS you already know to create beautiful illustrations in your browser. Better yet, you can achieve surprising results while still maintaining clean, semantic markup. We'll take a look at techniques for drawing with CSS, practical applications, and pushing the limits of what CSS can do.

Originally presented at CSSDay in Chandler, AZ.

Lynn Fisher

December 05, 2015
Tweet

More Decks by Lynn Fisher

Other Decks in Technology

Transcript

  1. • DRAWING PICTURES IN CSS • DRAWING PICTURES …IN GENERAL

    • ART • TECHNIQUES • WHY ARE WE DOING THIS?
  2. • DRAWING PICTURES IN CSS • DRAWING PICTURES …IN GENERAL

    • ART • TECHNIQUES • WHY ARE WE DOING THIS? • SVG
  3. <div  id="lisa">      <div  class="head">        

     <div  class="no-­‐border  body  head-­‐main"></div>          <div  class="no-­‐border  body  head-­‐main2"></div>          <div  class="no-­‐border  body  head-­‐main3"></div>          <div  class="no-­‐border  hair9"></div>          <div  class="no-­‐border  hair10"></div>          <div  class="body  hair  hair1"></div>          <div  class="body  hair  hair2"></div>          <div  class="body  hair  hair3"></div>          <div  class="body  hair  hair4"></div>          <div  class="body  hair  hair5"></div>          <div  class="body  hair  hair6"></div>          <div  class="body  hair  hair7"></div>          <div  class="body  hair  hair8"></div>          <div  class="body  mouth-­‐lip2"></div>    1    2    3    4    5    6    7    8    9   10   11   12   13   14   15   16  
  4. .rectangle  {      width:  80px;      height:  50px;

         background:  red;   }  1    2    3    4    5
  5. .circle  {      width:  50px;      height:  50px;

         background:  red;      border-­‐radius:  50%;   }  1    2    3    4    5    6
  6. .triangle  {      border-­‐bottom:  50px  solid  red;    

     border-­‐left:  50px  solid  transparent;      border-­‐right:  50px  solid  transparent;   }  1    2    3    4    5
  7. .triangle  {      border-­‐top:  20px  solid  red;    

     border-­‐right:  20px  solid  yellow;      border-­‐bottom:  20px  solid  green;      border-­‐left:  20px  solid  blue;   }  1    2    3    4    5    6
  8. .trapezoid  {      width:  50px;      border-­‐bottom:  50px

     solid  red;      border-­‐left:  50px  solid  transparent;      border-­‐right:  50px  solid  transparent;   }  1    2    3    4    5    6
  9. .circle  {      box-­‐shadow:  10px  10px  10px  black,  

                               100px  0  0  yellow;   }  1    2    3    4
  10. .circle  {      box-­‐shadow:  10px  10px  10px  black,  

                               100px  0  0  yellow,                              180px  0  0  blue;   }  1    2    3    4    5
  11. .circle  {      box-­‐shadow:  10px  10px  10px  black,  

                               100px  0  0  yellow,                              180px  0  0  blue,                              280px  0  0  -­‐20px  grey;   }  1    2    3    4    5    6
  12. .cylinder  {      background-­‐image:  linear-­‐gradient(to  right,      

                                       grey,  white,  grey,  black);   }  1    2    3    4    5
  13. .stripes  {      background-­‐image:  repeating-­‐linear-­‐gradient(        

                                     to  right,                                          red,  red  20px,                                          grey  20px,  grey  40px);   }  1    2    3    4    5    6
  14. .multi  {      background-­‐image:  linear-­‐gradient(to  bottom,      

                                       red,  blue);   }  1    2    3    4
  15. .multi  {      background-­‐image:  linear-­‐gradient(to  right,      

                                       transparent,  black),                                          linear-­‐gradient(to  bottom,                                          red,  blue);   }  1    2    3    4    5    6
  16. div::before  {      background:  yellow;   }   div::after

     {      background:  blue;   }  1    2    3    4    5    6
  17. div::before  {      background:  yellow;   }   div::after

     {      background:  blue;   }  1    2    3    4    5    6
  18. .button  {      background-­‐image:  linear-­‐gradient(to  bottom,      

                                       #eee,  #ccc);      box-­‐shadow:  5px  0  5px  rgba(0,0,0,.4);   }  1    2    3    4    5
  19. .button  {      background-­‐image:  linear-­‐gradient(to  bottom,      

                                       #eee,  #ccc);      box-­‐shadow:  5px  0  5px  rgba(0,0,0,.4);   }  1    2    3    4    5
  20.    box-­‐shadow:  inset  0  -­‐15px  10px  #45b3e0,      

                           0  7px  10px  black(.3);  4    5
  21.    box-­‐shadow:  inset  0  -­‐10px  10px  black(.3),      

                           inset  0  -­‐15px  10px  #45b3e0,                              0  7px  10px  black(.3);  4    5    6
  22.    box-­‐shadow:  inset  0  -­‐3px  3px  white(.3),      

                           inset  0  -­‐10px  10px  black(.3),                              inset  0  -­‐15px  10px  #45b3e0,                              0  7px  10px  black(.3);  4    5    6    7
  23.    box-­‐shadow:  inset  0  17px  5px  white(.7),      

                           inset  0  -­‐3px  3px  white(.3),                              inset  0  -­‐10px  10px  black(.3),                              inset  0  -­‐15px  10px  #45b3e0,                              0  7px  10px  black(.3);  4    5    6    7    8
  24.    box-­‐shadow:  inset  0  5px  5px  skyblue,      

                           inset  0  17px  5px  white(.7),                              inset  0  -­‐3px  3px  white(.3),                              inset  0  -­‐10px  10px  black(.3),                              inset  0  -­‐15px  10px  #45b3e0,                              0  7px  10px  black(.3);  4    5    6    7    8    9
  25. .button::before  {      border-­‐radius:  50%;      border-­‐top:  1px

     solid  black(.6);      border-­‐bottom:  1px  solid  white(.6);   }  1    2    3    4    5
  26.    box-­‐shadow:  0  2px  5px  5px  skyblue,      

                           0  10px  5px  5px  white(.6);  5    6
  27.    box-­‐shadow:  0  -­‐14px  10px  5px  #45b3e0,      

                           0  2px  5px  5px  skyblue,                              0  10px  5px  5px  white(.6);  5    6    7
  28.    box-­‐shadow:  3px  -­‐15px  7px  -­‐4px  black(.3),      

                           0  -­‐14px  10px  5px  #45b3e0,                              0  2px  5px  5px  skyblue,                              0  10px  5px  5px  white(.6);  5    6    7    8
  29.    box-­‐shadow:  inset  0  20px  2px  white(.3),      

                           3px  -­‐15px  7px  -­‐4px  black(.3),                              0  -­‐14px  10px  5px  #45b3e0,                              0  2px  5px  5px  skyblue,                              0  10px  5px  5px  white(.6);  5    6    7    8    9
  30.    background-­‐image:  radial-­‐gradient(circle  at            

                                 38px  38px,  #333  10px,                                          transparent  10px); 10   11   12
  31.                    

                       38px  38px,  #333  10px,                                          transparent  10px),                                          radial-­‐gradient(circle  at                                          73px  73px,  #333  10px,                                          transparent  10px),                                          radial-­‐gradient(circle  at                                          38px  73px,  #333  10px,                                          transparent  10px); 11   12   13   14   15   16   17   18
  32. .button::after  {      background-­‐image:  linear-­‐gradient(to  right,      

                                       transparent  35%,  navy  35%,                                          steelblue  40%,  navy  45%,                                          steelblue  50%,  navy  55%,                                          steelblue  60%,  navy  65%,                                          transparent  65%);    1    2    3    4    5    6    7
  33.                    

                       steelblue  60%,  navy  65%,                                          transparent  65%),                                          linear-­‐gradient(to  bottom,                                          transparent  35%,  navy  35%,                                          steelblue  40%,  navy  45%,                                          steelblue  50%,  navy  55%,                                          steelblue  60%,  navy  65%,                                          transparent  65%);    5    6    7    8    9   10   11   12
  34. .camera::before  {      background:  #444;      box-­‐shadow:  

     0  0  0  2px  #eee,                              -­‐1px  -­‐1px  1px  3px  #333,                              -­‐95px  6px  0  0  #ccc,                                30px  3px  0  12px  #ccc,                              -­‐18px  37px  0  46px  #ccc,                              -­‐96px  -­‐6px  0  -­‐6px  #555;   }    1    2    3    4    5    6    7    8
  35. .camera::after  {      background:  #ccc;      box-­‐shadow:  

     0  3px  2px  #999,                                1px  -­‐2px  0  white,                              -­‐1px  -­‐3px  2px  #555,                                0  0  0  15px  #c2c2c2,                                0  -­‐2px  0  15px  white,                                0  10px  10px  15px  black;   }    1    2    3    4    5    6    7    8
  36.    background-­‐image:  linear-­‐gradient(to  bottom…),            

                                         linear-­‐gradient(to  bottom…);  1    2
  37.    background-­‐image:  linear-­‐gradient(to  right…),            

                                 linear-­‐gradient(to  bottom…),                                                  linear-­‐gradient(to  bottom…);  1    2    3
  38.    background-­‐image:  linear-­‐gradient(to  right…),            

                                   linear-­‐gradient(to  right…),                                          linear-­‐gradient(to  bottom…),                                                  linear-­‐gradient(to  bottom…);  1    2    3    4
  39.    background-­‐image:  linear-­‐gradient(to  left…),            

                                   linear-­‐gradient(to  right…),                                            linear-­‐gradient(to  right…),                                          linear-­‐gradient(to  bottom…),                                                  linear-­‐gradient(to  bottom…);  1    2    3    4    5
  40.    background-­‐image:  linear-­‐gradient(to  left…),            

                                   linear-­‐gradient(to  right…),                                            linear-­‐gradient(to  right…),                                          linear-­‐gradient(to  bottom…),                                                  linear-­‐gradient(to  bottom…);  1    2    3    4    5
  41.    background-­‐image:  linear-­‐gradient(to  left…),            

                                   linear-­‐gradient(to  right…),                                            linear-­‐gradient(to  right…),                                          linear-­‐gradient(to  bottom…),                                                  linear-­‐gradient(to  bottom…);  1    2    3    4    5
  42. SVG