SlideShare a Scribd company logo
How to Win the Heart of CSS Boys
twitter: @hiloki
Blog: inkdesign.jp
Hiroki Tani
JavaScript HTML/CSSB
$('.setting-profile .save-button')	
	 .on('click', function(e){	
	 	 ... 	
});
S
T
<div class="setting-profile">	
...	
<button class="save-button">	
Save!	
</button>	
</div>
<div class="profile">	
...	
<button class="profile__save-button">	
Save!	
</button>	
</div>	
S
T
$('.js-save-profile')	
	 .on('click', function(e){	
	 	 ... 	
});
Q
B
.js-save-profile {	
...	
}
R
c
.js-save-profile {	
...	
}
<div class="setting-profile">	
...	
<button class="save-button js-save-profile">	
Save!	
</button>	
</div>
<div class="profile">	
...	
<button class="profile__save-button	
	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 js-save-profile">	
Save!	
</button>	
</div>	
Q
B
$('.js-close').on('click', function(){	
	 	 $(this).parent().parent().parent()	
	 	 	 .hide();	
});
S
T
$('.js-close').on('click', function(){	
	 	 $(this).closest('.js-container')	
.hide();	
});
Q
B
$('.register-button').css({	
'opacity': '0.5',	
‘background-color': '#ccc'	
});
S
T
$('.register-button')	
.addClass(‘is-disabled');
Q
B
B9
Thanks
Z
twitter: @hiloki
Blog: inkdesign.jp
Hiroki Tani
Cover Photo: www.flickr.com/photos/25969014@N06/6930963721/

More Related Content

PDF
CSS Components
PDF
CSS設計の理想と現実
PDF
Why Sass?
PDF
メンテナブルでありつづけるためのCSS設計
PDF
Thinking about CSS Architecture
TXT
Index
PDF
WordPressのテンプレートをカスタマイズするために必要なphpを初歩から解説
PDF
Novedades de Front-end 2016 (CSS3, HTML5 y APIs Javascript)
CSS Components
CSS設計の理想と現実
Why Sass?
メンテナブルでありつづけるためのCSS設計
Thinking about CSS Architecture
Index
WordPressのテンプレートをカスタマイズするために必要なphpを初歩から解説
Novedades de Front-end 2016 (CSS3, HTML5 y APIs Javascript)

What's hot (20)

PDF
Crea un tema compatibile con le ultime novità WordPress
PDF
Macdom html preprocesor
PPT
jQuery & jQuery Mobile
TXT
Code blogtangcan
PDF
Programación Nativa de un CRUD
DOCX
DOCUMENTACION PAGINA WEB PHP
PDF
PPT
J query aula01
DOCX
Un juego creado en php
PPTX
Aplikasi Rich Internet HTML5 & CSS3 Developer Mozilla (Kelompok 3)
PDF
jQuery Tutorial
DOC
Patricia Ann Wigginton Medical Resume
PDF
水生态基准方法学概述及建立我国水生态基准的探讨 -生态毒理学报(第一作者)
PDF
box model
PDF
CSS 101
KEY
Presentación WP Versión Keynote
KEY
JS for Rails developers
PDF
Intro to jQuery UI
PPTX
Facebook app API Vs2.0
PDF
Peek inside the fantastical Ukrainian Village home and studio of artists Jare...
Crea un tema compatibile con le ultime novità WordPress
Macdom html preprocesor
jQuery & jQuery Mobile
Code blogtangcan
Programación Nativa de un CRUD
DOCUMENTACION PAGINA WEB PHP
J query aula01
Un juego creado en php
Aplikasi Rich Internet HTML5 & CSS3 Developer Mozilla (Kelompok 3)
jQuery Tutorial
Patricia Ann Wigginton Medical Resume
水生态基准方法学概述及建立我国水生态基准的探讨 -生态毒理学报(第一作者)
box model
CSS 101
Presentación WP Versión Keynote
JS for Rails developers
Intro to jQuery UI
Facebook app API Vs2.0
Peek inside the fantastical Ukrainian Village home and studio of artists Jare...
Ad

Viewers also liked (13)

PDF
CSSプリプロセッサの取扱説明書
DOC
Hartman chapters 1 4 dec6
PDF
Locatieve Diensten Context 12-1-2010
PPT
Scrum: Fast, furious & effective
PDF
Business models | Wikilogia Bootcamp for SWDamascus
PDF
Discov uga
PDF
Types紹介
PDF
カスタム投稿タイプ&カスタムタクソノミーの使い方 #wbNagano
PDF
Cheat Your Way With UX
PDF
LESS is More
PDF
Webデザインと開発の未来
PDF
WordPress 高速化 Pro Tips: フロントエンドの最適化
PPTX
Agile for the rest of us
CSSプリプロセッサの取扱説明書
Hartman chapters 1 4 dec6
Locatieve Diensten Context 12-1-2010
Scrum: Fast, furious & effective
Business models | Wikilogia Bootcamp for SWDamascus
Discov uga
Types紹介
カスタム投稿タイプ&カスタムタクソノミーの使い方 #wbNagano
Cheat Your Way With UX
LESS is More
Webデザインと開発の未来
WordPress 高速化 Pro Tips: フロントエンドの最適化
Agile for the rest of us
Ad