HTML5DOMDocument extends the native DOMDocument library. It fixes some bugs and adds some new functionality.
1 2 3 4 5 6 |
<?php require 'vendor/autoload.php'; $dom = new IvoPetkov\HTML5DOMDocument(); $dom->loadHTML('<!DOCTYPE html><html><body>Hello</body></html>'); echo $dom->saveHTML(); |
Canvas based dial that adds mouse click, wheel mouse, keyboard and finger / touch events.
Really nice :)
SpinThatShit is a set of SCSS mixins for single element loaders and spinners.
1 |
<div class="your-loader"></div> |
1 2 3 |
.your-loader { @include loader09($size: 10px, $height: 48px, $gap: 8px, $duration: 1s, $align: middle); } |
Leaflet is the leading open-source JavaScript library for mobile-friendly interactive maps. Leaflet is designed with simplicity, performance and usability in mind. It works efficiently across all major desktop and mobile platforms, can be extended with lots of plugins, has a beautiful, easy to use and well-documented API.
Granim.js – Create fluid and interactive gradients animations with this small (< 10 kB) js library.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!-- Create a <canvas> element --> <canvas id="granim-canvas"></canvas> <!-- Call the script --> <script src="granim.min.js"></script> <!-- Create a Granim instance --> <script> var granimInstance = new Granim({ element: '#granim-canvas', name: 'granim', opacity: [1, 1], states : { "default-state": { gradients: [ ['#834D9B', '#D04ED6'], ['#1CD8D2', '#93EDC7'] ] } } }); </script> |
The Bellmaker is a library of device-agnostic and device-specific media queries that will complement your exisiting CSS.
1 2 3 4 5 6 7 8 9 |
.bellmaker_container { @media #{$da_baseline} { width: $pw_baseline;} @media #{$da_2x_small} { width: $pw_2x_small;} @media #{$da_x_small} { width: $pw_x_small;} @media #{$da_small} { width: $pw_small;} @media #{$da_medium} { width: $pw_medium;} @media #{$da_large} { width: $pw_large;} @media #{$da_x_large} { width: $pw_x_large;} } |
„Koala is a GUI application for Less, Sass, Compass and CoffeeScript compilation, to help web developers to use them more efficiently. Koala can run in windows, linux and mac.“
The library allows you to extract CSS files into a data structure, manipulate the data and output optimized CSS.
„Grav is a Fast, Simple, and Flexible, file-based Web-platform. There is Zero installation required. Just extract the ZIP archive, and you are already up and running. It follows similar principles to other flat-file CMS platforms, but has a different design philosophy than most.
Grav comes with a powerful Package Management System to allow for simple installation and upgrading of plugins and themes, as well as simple updating of Grav itself.“
A Sass mixin for creating angled edges on sections by dynamically encoding SVGs.
1 |
@include angled-edge('outside bottom','lower right', #EE3924); |