JSDM

新建画布
双面胶

双面胶

武汉 PRO 求职中

Pure CSS panels

This is an example of onepage panels navigation made with only CSS.

SVG filters are fun

Decided to see if I could recreate Reverb's marquee with only code (without any raster images). inspiration: http://reverb.com/page/about

Variable

Forked from [Alain Galvan](http://codepen.io/alaingalvan/)'s Pen [Hueshift](http://codepen.io/alaingalvan/pen/FwpBs/) and [beesandtrees](http://codepen.io/beesandtrees/)'s Pen [Bleeding Madras](http://codepen.io/beesandtrees/pen/MYdmjE/) and [xoihazard](http://codepen.io/xoihazard/)'s Pen [Hexagonal Grid Test](http://codepen.io/xoihazard/pen/yyrgqL/).

Truncated text demo

Take away: function truncate(string, limit) { if (!string) return; if (string.length < limit) return string; var substring = string.substring(0, limit); var spacePosition = substring.lastIndexOf(' '); if (spacePosition === substring.length) return substring; else return substring.substring(0, spacePosition) + '...'; }

Material Flex Boxes

Quick little expierement with flex boxes.