Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Zukunft von Design und Layout im Browser

Zukunft von Design und Layout im Browser

German Slidedeck of a talk held at the first Tourstop of @EdgeDocks "Design for the modern Web" Tour in Bremen, February 25, 2014

Andre Jay Meissner

February 25, 2014
Tweet

More Decks by Andre Jay Meissner

Other Decks in Design

Transcript

  1. ZUKUNFT VON DESIGN UND LAYOUT IM BROWSER Bremen, 25. Februar

    2014 Andre JAY Meissner @klick_ass #DFTMW
  2. .content { /* Content sammeln im named flow */ flow-into:

    myFlow; } .region { /* Content aus dem named flow rendern */ flow-from: myFlow; }
  3. Blend Modes normal screen multiply overlay darken lighten color-dodge exclusion

    color-burn hard-light soft-light difference hue saturation color luminosity http://www.w3.org/TR/compositing-1/#blending
  4. /* blend background images of the same element */ .element

    { background: url(image1.jpg), url(image2.jpg); background-blend-mode: overlay; } Background Blending
  5. Complex shapes /* Punkte eines Polygons definieren Shape */ .content

    { shape-inside: polygon(x1, y1 x2, y2 ... ); } /* Alphalevels eines Bildes definieren Shape */ .content { shape-inside: url(image.png); shape-image-threshold: 0.5; }