Submit Search
How to Win the Heart of CSS Boys
10 likes
2,171 views
拓樹 谷
JS Girls Tokyo #1 のライトニングトークセッションのスライドです。
Technology
Read more
1 of 17
Download now
Download to read offline
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
More Related Content
PDF
CSS Components
拓樹 谷
PDF
CSS設計の理想と現実
拓樹 谷
PDF
Why Sass?
拓樹 谷
PDF
メンテナブルでありつづけるためのCSS設計
拓樹 谷
PDF
Thinking about CSS Architecture
拓樹 谷
TXT
Index
grateful7
PDF
WordPressのテンプレートをカスタマイズするために必要なphpを初歩から解説
Takashi Uemura
PDF
Novedades de Front-end 2016 (CSS3, HTML5 y APIs Javascript)
Román Hernández
CSS Components
拓樹 谷
CSS設計の理想と現実
拓樹 谷
Why Sass?
拓樹 谷
メンテナブルでありつづけるためのCSS設計
拓樹 谷
Thinking about CSS Architecture
拓樹 谷
Index
grateful7
WordPressのテンプレートをカスタマイズするために必要なphpを初歩から解説
Takashi Uemura
Novedades de Front-end 2016 (CSS3, HTML5 y APIs Javascript)
Román Hernández
What's hot
(20)
PDF
Crea un tema compatibile con le ultime novità WordPress
SkillsAndMore
PDF
Macdom html preprocesor
Vladimír Macháček
PPT
jQuery & jQuery Mobile
Mohammad Raju
TXT
Code blogtangcan
Quyên Lê
PDF
Programación Nativa de un CRUD
FUNDET ECUADOR
DOCX
DOCUMENTACION PAGINA WEB PHP
Dorian Xavier Bendezu Martinez
PDF
Jogos 3.0
Fernanda Bernardo
PPT
J query aula01
Suissa
DOCX
Un juego creado en php
Erwin Lobo
PPTX
Aplikasi Rich Internet HTML5 & CSS3 Developer Mozilla (Kelompok 3)
Ade Shopyan
PDF
jQuery Tutorial
Eric ShangKuan
DOC
Patricia Ann Wigginton Medical Resume
Patricia Wigginton
PDF
水生态基准方法学概述及建立我国水生态基准的探讨 -生态毒理学报(第一作者)
leongaber
PDF
box model
jay li
PDF
CSS 101
Sofish Lin
KEY
Presentación WP Versión Keynote
José Fonseca
KEY
JS for Rails developers
Timur Vafin
PDF
Intro to jQuery UI
appendTo
PPTX
Facebook app API Vs2.0
Felix Rivas
PDF
Peek inside the fantastical Ukrainian Village home and studio of artists Jare...
irwinvifxcfesre
Crea un tema compatibile con le ultime novità WordPress
SkillsAndMore
Macdom html preprocesor
Vladimír Macháček
jQuery & jQuery Mobile
Mohammad Raju
Code blogtangcan
Quyên Lê
Programación Nativa de un CRUD
FUNDET ECUADOR
DOCUMENTACION PAGINA WEB PHP
Dorian Xavier Bendezu Martinez
Jogos 3.0
Fernanda Bernardo
J query aula01
Suissa
Un juego creado en php
Erwin Lobo
Aplikasi Rich Internet HTML5 & CSS3 Developer Mozilla (Kelompok 3)
Ade Shopyan
jQuery Tutorial
Eric ShangKuan
Patricia Ann Wigginton Medical Resume
Patricia Wigginton
水生态基准方法学概述及建立我国水生态基准的探讨 -生态毒理学报(第一作者)
leongaber
box model
jay li
CSS 101
Sofish Lin
Presentación WP Versión Keynote
José Fonseca
JS for Rails developers
Timur Vafin
Intro to jQuery UI
appendTo
Facebook app API Vs2.0
Felix Rivas
Peek inside the fantastical Ukrainian Village home and studio of artists Jare...
irwinvifxcfesre
Ad
Viewers also liked
(13)
PDF
CSSプリプロセッサの取扱説明書
拓樹 谷
DOC
Hartman chapters 1 4 dec6
jeffersonhartman
PDF
Locatieve Diensten Context 12-1-2010
Fabrique
PPT
Scrum: Fast, furious & effective
Fabrique
PDF
Business models | Wikilogia Bootcamp for SWDamascus
Wikilogia
PDF
Discov uga
Matt Petrovic
PDF
Types紹介
Takashi Hosoya
PDF
カスタム投稿タイプ&カスタムタクソノミーの使い方 #wbNagano
Hiroshi Urabe
PDF
Cheat Your Way With UX
stephtroeth
PDF
LESS is More
jsmith92
PDF
Webデザインと開発の未来
masaaki komori
PDF
WordPress 高速化 Pro Tips: フロントエンドの最適化
masaaki komori
PPTX
Agile for the rest of us
Anders Ramsay
CSSプリプロセッサの取扱説明書
拓樹 谷
Hartman chapters 1 4 dec6
jeffersonhartman
Locatieve Diensten Context 12-1-2010
Fabrique
Scrum: Fast, furious & effective
Fabrique
Business models | Wikilogia Bootcamp for SWDamascus
Wikilogia
Discov uga
Matt Petrovic
Types紹介
Takashi Hosoya
カスタム投稿タイプ&カスタムタクソノミーの使い方 #wbNagano
Hiroshi Urabe
Cheat Your Way With UX
stephtroeth
LESS is More
jsmith92
Webデザインと開発の未来
masaaki komori
WordPress 高速化 Pro Tips: フロントエンドの最適化
masaaki komori
Agile for the rest of us
Anders Ramsay
Ad
How to Win the Heart of CSS Boys
1.
How to Win
the Heart of CSS Boys
2.
twitter: @hiloki Blog: inkdesign.jp Hiroki
Tani
3.
JavaScript HTML/CSSB
4.
$('.setting-profile .save-button') .on('click',
function(e){ ... }); S T
5.
<div class="setting-profile"> ... <button class="save-button"> Save! </button> </div>
6.
<div class="profile"> ... <button class="profile__save-button"> Save! </button> </div> S T
7.
$('.js-save-profile') .on('click', function(e){
... }); Q B
8.
.js-save-profile { ... }
9.
R c .js-save-profile { ... }
10.
<div class="setting-profile"> ... <button class="save-button
js-save-profile"> Save! </button> </div>
11.
<div class="profile"> ... <button class="profile__save-button
js-save-profile"> Save! </button> </div> Q B
12.
$('.js-close').on('click', function(){
$(this).parent().parent().parent() .hide(); }); S T
13.
$('.js-close').on('click', function(){
$(this).closest('.js-container') .hide(); }); Q B
14.
$('.register-button').css({ 'opacity': '0.5', ‘background-color': '#ccc' }); S T
15.
$('.register-button') .addClass(‘is-disabled'); Q B
16.
B9
17.
Thanks Z twitter: @hiloki Blog: inkdesign.jp Hiroki
Tani Cover Photo: www.flickr.com/photos/25969014@N06/6930963721/
Download