A Pen by Martin Wolf on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let styles: [UIFont.TextStyle] = [ | |
// iOS 17 | |
.extraLargeTitle, .extraLargeTitle2, | |
// iOS 11 | |
.largeTitle, | |
// iOS 9 | |
.title1, .title2, .title3, .callout, | |
// iOS 7 | |
.headline, .subheadline, .body, .footnote, .caption1, .caption2, | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function get(uri) { | |
return http(uri,'GET'); | |
} | |
function post(uri,data) { | |
if(typeof data === 'object' && !(data instanceof String || (FormData && data instanceof FormData))) { | |
var params = []; | |
for(var p in data) { | |
if(data[p] instanceof Array) { | |
for(var i = 0; i < data[p].length; i++) { | |
params.push( encodeURIComponenet(p) + '[]=' + encodeURIComponenet(data[p][i]); |
A particle emitter using DOM elements and CSS transforms instead of more sensible technologies like SVG or Canvas.
A Pen by Ashley Kyd on CodePen.
Animação feita com keyframes e SASS, inspirado por projetos do Lucas Bebber (http://codepen.io/lbebber/) e Adam Ilter (http://codepen.io/ademilter/)
Forked from Cornel Stefanache's Pen qofvL.
A Pen by Captain Anonymous on CodePen.
SVG Circular Progress CSS Animated Angle Gradient
By Pouya Saadeghi
A Pen by Pouya Saadeghi (پویا صادقی) on CodePen.
A Pen by Jan-Kanty Pawelski on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class='small'>minimal counter</div> | |
<div class='wrapper'> | |
<div id="a" /> | |
</div> | |
<a href="http://mnmly.com" target="_blank">mnmly</a> | |
<a class='github' href="https://github.com/mnmly/minimal-counter" target="_blank">github</a> |
NewerOlder