17
How to Win the Heart of CSS Boys

How to Win the Heart of CSS Boys

  • Upload
    -

  • View
    128

  • Download
    2

Embed Size (px)

DESCRIPTION

JS Girls Tokyo #1 のライトニングトークセッションのスライドです。

Citation preview

Page 1: How to Win the Heart of CSS Boys

How to Win the Heart of CSS Boys

Page 2: How to Win the Heart of CSS Boys

twitter: @hiloki Blog: inkdesign.jp

Hiroki Tani

Page 3: How to Win the Heart of CSS Boys

JavaScript HTML/CSSB

Page 4: How to Win the Heart of CSS Boys

$('.setting-profile .save-button') .on('click', function(e){ ... });

ST

Page 5: How to Win the Heart of CSS Boys

<div class="setting-profile"> ... <button class="save-button"> Save! </button></div>

Page 6: How to Win the Heart of CSS Boys

<div class="profile"> ... <button class="profile__save-button"> Save! </button></div>

ST

Page 7: How to Win the Heart of CSS Boys

$('.js-save-profile') .on('click', function(e){ ... });

QB

Page 8: How to Win the Heart of CSS Boys

.js-save-profile { ...}

Page 9: How to Win the Heart of CSS Boys

Rc

.js-save-profile { ...}

Page 10: How to Win the Heart of CSS Boys

<div class="setting-profile"> ... <button class="save-button js-save-profile"> Save! </button></div>

Page 11: How to Win the Heart of CSS Boys

<div class="profile"> ... <button class="profile__save-button js-save-profile"> Save! </button></div>

QB

Page 12: How to Win the Heart of CSS Boys

$('.js-close').on('click', function(){ $(this).parent().parent().parent() .hide();});

ST

Page 13: How to Win the Heart of CSS Boys

$('.js-close').on('click', function(){ $(this).closest('.js-container') .hide();});

QB

Page 14: How to Win the Heart of CSS Boys

$('.register-button').css({ 'opacity': '0.5', ‘background-color': '#ccc'});

ST

Page 15: How to Win the Heart of CSS Boys

$('.register-button') .addClass(‘is-disabled');

QB

Page 16: How to Win the Heart of CSS Boys

B9

Page 17: How to Win the Heart of CSS Boys

ThanksZ

twitter: @hiloki Blog: inkdesign.jp

Hiroki Tani

Cover Photo: www.flickr.com/photos/25969014@N06/6930963721/