SlideShare ist ein Scribd-Unternehmen logo
1 von 86
Downloaden Sie, um offline zu lesen
Front end anno 2014
@davidpaulsson
david@davidpaulsson.se
davidpaulsson.se
The meat & potatoes
•

HTML

•

CSS

•

JS
The meat & potatoes
•

HTML

•

HAML

•

CSS

•

LESS/SASS

•

JS

•

CoffeeScript
The meat & potatoes
•

HTML

•

Emmet

•

CSS

•

LESS/SASS

•

JS

•

Yeoman
The meat & potatoes
•

HTML

•

Emmet

•

CSS

•

LESS/SASS

•

JS

•

Yeoman

•

Vi bygger något!
“Frontend development these
days has a lot of fancy tools
available to complicate things.”
@mikaellundin
sass
compass
less
stylus
markdown
haml
jade
susy
coffeescript
jquery
yeoman
ant
make
rake
cake

bash
jshint
jslint
codekit
livereload
grunt
web-build
handlebars
mustache
emmet
selenium
bower
browserstack
mogotest
require

sprockets
jquery mobile
sencha
ui sproutcore
selenium
bootstrap
qunit
yo
jasmine
jstestdriver
phantomjs
bourbon
neat
singularity
och så vidare…
Skriv kod, snabbt
emmet.io
Samma syntax för
HTML som CSS
DEMO
CSS preprocessors
Variabler
$font-stack: Helvetica, sansserif;
$primary-color: #333;
!

body {
font: 100% $font-stack;
color: $primary-color;
}
$font-stack:
serif;
$primary-color: #333;
!

body {
font: 100% $font-stack;
color: $primary-color;
}

body {
font: 100% Helvetica, sansserif;
color: #333;
}
Nesting
nav {
ul {
margin: 0;
padding: 0;
list-style: none;
}
!

li {
display: inline-block;
}
!

a{
display: block;
padding: 6px 12px;
text-decoration: none;
}
}
nav {
ul {
margin: 0;
padding: 0;
list-style: none;
}

nav ul {
margin: 0;
padding: 0;
list-style: none;
}

!

!

li {
display: inline-block;
!

!

a{
display: block;
padding: 6px 12px;
text-decoration: none;
}
}

nav li {
display: inline-block;
}
nav a {
display: block;
padding: 6px 12px;
text-decoration: none;
}
nav {
ul {
li {
a{
span {
&:last-item {
strong {
margin: 0;
}
}
}
}
}
}
}

nav ul li a span:last-item strong {
margin: 0;
}
nav {
ul {
li {
a{
span {
&:last-item {
strong {
margin: 0;
}
}
}
}
}
}
}

nav ul li a span:last-item strong {
margin: 0;
}
Mixins
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
-o-border-radius: $radius;
border-radius: $radius;
}
!

.box {
@include border-radius(10px);
}
@mixin border-radius($radius) {

}
!

.box {
}

.box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
}
Extends
.message {
border: 1px solid #ccc;
padding: 10px;
color: #333;
}
!
.success {
@extend .message;
border-color: green;
}
!
.error {
@extend .message;
border-color: red;
}
!
.warning {
@extend .message;
border-color: yellow;
}
.message {
border: 1px solid #ccc;
padding: 10px;
color: #333;
}
!
.success {
@extend .message;
border-color: green;
}
!
.error {
@extend .message;
border-color: red;
}
!
.warning {
@extend .message;
border-color: yellow;
}

.message,
.success,
.error,
.warning {
border: 1px solid #cccccc;
padding: 10px;
color: #333;
}
!
.success {
border-color: green;
}
!
.error {
border-color: red;
}
!
.warning {
border-color: yellow;
}
Operators
.container {
width: 100%;
}
!

article[role="main"] {
float: left;
width: 600px / 960px * 100%;
}
!

aside[role="complimentary"] {
float: right;
width: 300px / 960px * 100%;
}
.container {
width: 100%;
}

.container {
width: 100%;
}

!

!

article[role="main"] {
float: left;
width: 600px / 960px * 100%;
}

article[role="main"] {
float: left;
width: 62.5%;
}

!

!

aside[role="complimentary"] {
float: right;
width: 300px / 960px * 100%;
}

aside[role="complimentary"] {
float: right;
width: 31.25%;
}
CSS preprocessors
•

LESS (js)

•

Switch (python)

•

SASS (ruby)

•

Cacheer (php)

•

Turbine (php)

•

Stylus (js/nodejs)
CSS preprocessors
•

LESS (js)

•

Switch (python)

•

SASS (ruby)

•

Cacheer (php)

•

Turbine (php)

•

Stylus (js/nodejs)
LESSHat
Bootstrap
Compass
Susy
Bourbon
Bourbon NEAT
Singularity
Inuit.css
Foundation
GUI
style.scss → style.css
style.less → style.css
command-line interface (CLI)
node.js
npm
$ brew install node
(Widows: http://nodejs.org/)
$ npm install -g less
$ lessc style.less
(sass kräver ruby)
libsass
C/C++ port av Sass
$ gem install sass
$ sass style.scss
Addy Osmani
Sindre Sorhus
Brian Ford
Eric Bidelman
Paul Irish
Mickael Daniel
Pascal Hartig
Stephen Swchuk
Frederick Ros
$ npm install -g yo
yo (the scaffolding tool)
bower (for package management)
grunt (the build tool)
$ yo
$ bower install
$ bower install jquery
$ bower list
$ grunt
$ grunt sass
$ grunt compass
$ grunt less
$ grunt jshint
$ grunt uglify
$ grunt imagemin
$ grunt modernizr
such code
much tool
wow
very demo

Weitere ähnliche Inhalte

Andere mochten auch

10. pengolahan lumpur_di_bpam
10. pengolahan lumpur_di_bpam10. pengolahan lumpur_di_bpam
10. pengolahan lumpur_di_bpamnyomankurniawan
 
El Genom Tiderna
El Genom TidernaEl Genom Tiderna
El Genom TidernaHans
 
5.Infotech Konumsal Risk YöNetim Sistemi
5.Infotech Konumsal Risk  YöNetim Sistemi5.Infotech Konumsal Risk  YöNetim Sistemi
5.Infotech Konumsal Risk YöNetim SistemiErmando
 
mobipoll @ РИФ+КИБ
mobipoll @ РИФ+КИБmobipoll @ РИФ+КИБ
mobipoll @ РИФ+КИБAnton Kuchumov
 
Brian Glass Making Decisions
Brian Glass Making DecisionsBrian Glass Making Decisions
Brian Glass Making Decisionsbrnglass
 
Anixter Overview
Anixter OverviewAnixter Overview
Anixter Overviewrrakib
 
Future Use Of Computers
Future Use Of ComputersFuture Use Of Computers
Future Use Of ComputersYo-han Song
 
Property for Sale 46 Meeanee Quay
Property for Sale 46 Meeanee QuayProperty for Sale 46 Meeanee Quay
Property for Sale 46 Meeanee Quayrobventer
 
Facebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàng
Facebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàngFacebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàng
Facebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàngHoàng Nguyễn
 

Andere mochten auch (18)

10. pengolahan lumpur_di_bpam
10. pengolahan lumpur_di_bpam10. pengolahan lumpur_di_bpam
10. pengolahan lumpur_di_bpam
 
El Genom Tiderna
El Genom TidernaEl Genom Tiderna
El Genom Tiderna
 
Essere freelance - guida pratica di orientamento
Essere freelance - guida pratica di orientamentoEssere freelance - guida pratica di orientamento
Essere freelance - guida pratica di orientamento
 
5.Infotech Konumsal Risk YöNetim Sistemi
5.Infotech Konumsal Risk  YöNetim Sistemi5.Infotech Konumsal Risk  YöNetim Sistemi
5.Infotech Konumsal Risk YöNetim Sistemi
 
mobipoll @ РИФ+КИБ
mobipoll @ РИФ+КИБmobipoll @ РИФ+КИБ
mobipoll @ РИФ+КИБ
 
The Monkey Called Personal Branding
The Monkey Called Personal BrandingThe Monkey Called Personal Branding
The Monkey Called Personal Branding
 
Week6
Week6Week6
Week6
 
Save antarctica
Save antarcticaSave antarctica
Save antarctica
 
Teens' Top Ten
Teens' Top TenTeens' Top Ten
Teens' Top Ten
 
15 Reasons Your Business Sucks
15 Reasons Your Business Sucks15 Reasons Your Business Sucks
15 Reasons Your Business Sucks
 
Ark 05 09
Ark 05 09Ark 05 09
Ark 05 09
 
Brian Glass Making Decisions
Brian Glass Making DecisionsBrian Glass Making Decisions
Brian Glass Making Decisions
 
Exceptional Service, Exceptional Profit
Exceptional Service, Exceptional ProfitExceptional Service, Exceptional Profit
Exceptional Service, Exceptional Profit
 
Anixter Overview
Anixter OverviewAnixter Overview
Anixter Overview
 
Future Use Of Computers
Future Use Of ComputersFuture Use Of Computers
Future Use Of Computers
 
Property for Sale 46 Meeanee Quay
Property for Sale 46 Meeanee QuayProperty for Sale 46 Meeanee Quay
Property for Sale 46 Meeanee Quay
 
Hydrogen Station Design from CaFCP
Hydrogen Station Design from CaFCPHydrogen Station Design from CaFCP
Hydrogen Station Design from CaFCP
 
Facebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàng
Facebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàngFacebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàng
Facebook Marketing Hoàng Nguyễn-2. Tìm kiếm khách hàng
 

Front end anno 2014