SlideShare a Scribd company logo
CSS3 vs. jQuery
Prak Sophy (@psophy)
www.web-essentials.asia
www.typo3cambodia.org
CSS3?
 CSS3 contains just about everything that’s included in
 CSS2.1
 2000-04-14 First Public Draft
  2001-01-19 Working Draft
 Current Working Draft
jQuery?
 An open source JavaScript library
 Created by John Resig in 2005 
 Release in January 14th, 2006 at BarCampNYC
 Current Version jQuery v1.6.4
Selectors
CSS3:
  :first-child     :empty
  :last-child      :target
  :nth-child(n)    :enable
  :nth-of-type     :display
  :first-of-type   :not(S)
  :last-of-type    ::first-line
  :only-child      ::first-
  :only-of-type    letter
  :root            ...
  :empty
Selectors...

jQuery:
  :button,
  :even
  :empty
  :first-child
  :gt
  :has
  :last-child
  :parent
  ...
HTML
 <ul class="menu">
    <li><a href="/a/1">Menu</a>
        <ul>
             <li><a href="/a/a">Sub-menu   A</a></li>
             <li><a href="/a/b">Sub-menu   B</a></li>
             <li><a href="/a/c">Sub-menu   C</a></li>
        </ul>
    </li>
</ul>
CSS3
.menu > li > ul {
    display: none;
}
.menu > li:hover > ul {
     display: block;
  }
jQuery

$('.menu > li').hover(
  function(){
      $('ul', this).show('slow');
  },
  function(){
      $('ul', this).hide('slow');
  }
);
:nth-child
CSS3
.student-list tbody tr:nth-child(2n) {
   background: #7CEAE1;
 }
 .student-list tbody tr:nth-child(2n + 1) {
   background: #fcfcfc;
 }

 Or...
.student-list tbody tr:nth-child(odd) {
   background: #7CEAE1;
 }
 .student-list tbody tr:nth-child(even) {
   background: #fcfcfc;
 }
jQuery
$(".student-list tbody tr:odd").css('background', '#7CEAE1');
$(".student-list tbody tr:even").css('background', '#f5f5f5');




Or..

$(".student-list tbody tr:nth-child(2n)").css('background',
'#7CEAE1');

$(".student-list tbody tr:nth-child(2n+1)").css('background',
'#f5f5f5');
FORM VALIDATION
jQuery Validate Engine
https://github.com/posabsolute/jQuery-Validation-Engine
HTML
<input value="2010-12-01"
class="validate[required,custom[date]]"
type="text" name="date" id="date" />

<input value="too"
class="validate[required,custom[onlyLet
terNumber]]" type="text" name="special"
id="special" />
jQuery
$("#form.id").validationEngine();


//Demo   http://www.position-relative.net/creation/formValidator/
Using CSS3 and HTML5
 /* A List Apart: Forward Thinking Form Validation (http://goo.gl/7d5yQ) */
CSS3 UI pseudo-class
:valid
:invalid
:required
:optional
:out-of-range
:read-only
:read-write
HTML
…

<label for="email">Email *</label>
<input type="email" id="email" name="email"
   placeholder="e.g. ryan@example.net"
   title="Please enter a valid email" required />
   <p class="validation01">
     <span class="invalid">Please enter a valid
      email address e.g. ryan@example.com</span>
     <span class="valid">Thank you for entering a
      valid email</span>
   </p>

…
CSS3
.validation01 {
  background: red;
  color: #fff;
  display: none;
  font-size: 12px;
  padding: 3px;
  position: absolute;
  right: -110px;
  text-align: center;
  top: 0;
  width: 100px;
}
CSS3
input:focus + .validation01 {
  display: block;
}

input:focus:required:valid + .validation01 {
  background: green;
}

input:focus:required:valid + .validation01 .invalid
{
  display: none;
}

input:focus:required:invalid + .validation01 .valid
{
  display: none;
}
ANIMATION
jQuery Animation
       Methods
.animate()      .slideDown
.fadeIn()       .slideToggle()
.fadeOut()      .slideUp
.fadeToggle()
                .stop()
.fadeTo()
                .toggle()
.hide()
.show()
jQuery Animate
$("#example_box").animate({
    width: "70%",
    opacity: 0.4,
    marginLeft: "0.6in",
    fontSize: "3em",
    borderWidth: "10px"
  }, 1500 );
CSS3 Transitions
transition-property: background;
transition-duration: 0.3s;
transition-timing-function: ease;




/* Don't forget vendors prefix */
-moz-transition
-webkit-transition
-o-transition
CSS3 Transitions
/* Shortcut */
transition: background 0.3s ease;
/* Multiple properties */
transition: background 0.3s ease,
            width 0.3s linear;
/* All properties */
transition: all 0.3s ease;
/* Understanding CSS3 Transitions */
http://goo.gl/k9EcX
/* Transition with Tranform */
http://goo.gl/HB2mc
http://goo.gl/KvclU
CSS3 Transform


    http://goo.gl/QZvVw




        http://goo.gl/xL2yv
CSS3 Transform
transform: translate(100px, 100px);




/* Don't forget vendors prefix */
-moz-transform
-webkit-transform
-o-transform
CSS3 Transform
transform: translate(80px, 80px)
  scale(1.5, 1.5) rotate(45deg);
CSS3 Animation(@)




 http://goo.gl/c8QJB   http://goo.gl/uv33G
CSS3 Animation
.   The Keyframe @ Rule
.   animation-name
.   animation-duration
.   animation-timing-function
.   animation-iteration-count
.   animation-direction
.   animation-delay
CSS3 Animation
@keyframes resize {
   0% {
       padding: 0;
   }
   50% {
     padding: 0 20px;
     background-color:rgba(255,0,0,0.2);
   }
   100% {
      padding: 0 100px;
      background-color:rgba(255,0,0,0.9);
   }
}
CSS3 Animation
#box {
   animation-name: resize;
   animation-duration: 1s;
   animation-iteration-count: 4;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
}
/* Don't forget vendors prefix */
-moz-transition
-webkit-transition
-o-transition
TAG TEAM: jQuery with CSS3
http://jquerymobile.com/
CSS3 vs jQuery
THANK YOU!
 http://kooms.info

More Related Content

PDF
CSS3 and jQuery
PDF
JavaFXで開く新世代GUI
PDF
HTML5 and CSS3: Exploring Mobile Possibilities - London Ajax Mobile Event
PDF
Rails GUI Development with Ext JS
KEY
ARTDM 170 Week 4: JavaScript Effects
PDF
Intro to jquery
PPTX
Java script errors &amp; exceptions handling
PPSX
Confluence - Improving Space Navigation. London AUG October 2013
CSS3 and jQuery
JavaFXで開く新世代GUI
HTML5 and CSS3: Exploring Mobile Possibilities - London Ajax Mobile Event
Rails GUI Development with Ext JS
ARTDM 170 Week 4: JavaScript Effects
Intro to jquery
Java script errors &amp; exceptions handling
Confluence - Improving Space Navigation. London AUG October 2013

What's hot (20)

PDF
Theming Ext JS 4
PPTX
4. Php MongoDB view_data
PPT
symfony & jQuery (PUG)
PDF
Pengenalan AngularJS
PDF
次世代版 PowerCMS 開発プロジェクトのご紹介
PDF
PowerCMS X
PDF
Practica csv
PDF
22 j query1
PDF
Html5 & CSS overview
PDF
jQuery 實戰經驗講座
PPTX
Rails, Postgres, Angular, and Bootstrap: The Power Stack
PPTX
Database Management - Lecture 4 - PHP and Mysql
DOCX
PPTX
5. hello popescu
PDF
Practical PHP by example Jan Leth-Kjaer
PPTX
Oh, you’re the NY times guy
PDF
Nette framework (WebElement #27 lightning talk)
PPTX
Sins Against Drupal 2
PPT
YUI for your Hacks-IITB
PDF
Юрий Буянов «Squeryl — ORM с человеческим лицом»
Theming Ext JS 4
4. Php MongoDB view_data
symfony & jQuery (PUG)
Pengenalan AngularJS
次世代版 PowerCMS 開発プロジェクトのご紹介
PowerCMS X
Practica csv
22 j query1
Html5 & CSS overview
jQuery 實戰經驗講座
Rails, Postgres, Angular, and Bootstrap: The Power Stack
Database Management - Lecture 4 - PHP and Mysql
5. hello popescu
Practical PHP by example Jan Leth-Kjaer
Oh, you’re the NY times guy
Nette framework (WebElement #27 lightning talk)
Sins Against Drupal 2
YUI for your Hacks-IITB
Юрий Буянов «Squeryl — ORM с человеческим лицом»
Ad

Viewers also liked (8)

PDF
Khmer TYPO3 User Group
PDF
Gobind prakash 2014-15 Patna Sahib Gurudwara
PDF
T3 con12asia 10 golden features of a business website
PDF
Kalgidhar Jantri from Patna Sahib Gurudwara 2014-15
PPTX
Pdhpe
PDF
Introduction to Flow3
PDF
Powerful Open Source TYPO3 CMS
PDF
Karmcity 14 oct
Khmer TYPO3 User Group
Gobind prakash 2014-15 Patna Sahib Gurudwara
T3 con12asia 10 golden features of a business website
Kalgidhar Jantri from Patna Sahib Gurudwara 2014-15
Pdhpe
Introduction to Flow3
Powerful Open Source TYPO3 CMS
Karmcity 14 oct
Ad

Similar to CSS3 vs jQuery (20)

KEY
CSS3 Takes on the World
PDF
PDF
Introduccion a HTML5
KEY
Html5 intro
TXT
Blog skins396734
PDF
Repaso rápido a los nuevos estándares web
KEY
Jarv.us Showcase — SenchaCon 2011
PDF
HTML5 and CSS3 – exploring mobile possibilities - Frontend Conference Zürich
PPT
JQuery Flot
PPTX
Svcc 2013-d3
PPTX
SVCC 2013 D3.js Presentation (10/05/2013)
KEY
Web accessibility
PPTX
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
PPT
J query b_dotnet_ug_meet_12_may_2012
PPTX
Site optimization
PPTX
PDF
Building iPhone Web Apps using "classic" Domino
PDF
HTML5 and CSS3 Shizzle
PPTX
Html5 and web technology update
CSS3 Takes on the World
Introduccion a HTML5
Html5 intro
Blog skins396734
Repaso rápido a los nuevos estándares web
Jarv.us Showcase — SenchaCon 2011
HTML5 and CSS3 – exploring mobile possibilities - Frontend Conference Zürich
JQuery Flot
Svcc 2013-d3
SVCC 2013 D3.js Presentation (10/05/2013)
Web accessibility
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
J query b_dotnet_ug_meet_12_may_2012
Site optimization
Building iPhone Web Apps using "classic" Domino
HTML5 and CSS3 Shizzle
Html5 and web technology update

Recently uploaded (20)

PPT
Teaching material agriculture food technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Electronic commerce courselecture one. Pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Encapsulation theory and applications.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
KodekX | Application Modernization Development
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Modernizing your data center with Dell and AMD
Teaching material agriculture food technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Electronic commerce courselecture one. Pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Spectral efficient network and resource selection model in 5G networks
Encapsulation theory and applications.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Digital-Transformation-Roadmap-for-Companies.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
Understanding_Digital_Forensics_Presentation.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
NewMind AI Weekly Chronicles - August'25 Week I
Reach Out and Touch Someone: Haptics and Empathic Computing
KodekX | Application Modernization Development
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
MYSQL Presentation for SQL database connectivity
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Modernizing your data center with Dell and AMD

CSS3 vs jQuery