Skip to content

Instantly share code, notes, and snippets.

View peazz's full-sized avatar

Andy Cresswell peazz

View GitHub Profile
@peazz
peazz / svg-to-css-clip-path-polygon.js
Created March 27, 2019 17:37 — forked from lostfictions/svg-to-css-clip-path-polygon.js
convert an svg to a css clip-path polygon
// why do this? clip-path accepts a `url` reference to an svg element, right?
// the difference is that anything defined as a `basic-shape` can be animated:
// https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path
const input = `121.151,20.761 170.165,55.885 200.872,3.816 231.145,55.884 280.592,20.762 286.854,80.687 346.526,68.666
327.657,126.005 387.276,139.247 346.502,184 395.796,220.302 340.127,244.647 370.611,297.814 309.636,297.457 316.076,358.381
260.303,333.3 241.622,391.529 200.655,345.979 160.121,391.53 141.008,333.302 85.666,358.381 91.673,297.456 31.131,297.813
61.183,244.647 5.947,220.302 54.81,184 14.466,139.248 73.652,126.004 55.216,68.667 114.457,80.688 `
const viewBoxScale = 4
@peazz
peazz / gulpfile.js
Created April 1, 2017 01:14 — forked from gaspanik/gulpfile.js
automate optimize images w/ gulp
var gulp = require('gulp')
, imagemin = require('gulp-imagemin');
var paths = {
srcDir: 'src/*',
destDir: 'images'
}
gulp.task('imagemin', function() {
gulp.src(paths.srcDir)
@peazz
peazz / functions.php
Created February 12, 2016 23:57 — forked from jaybuys/functions.php
WordPress Visual Composer Mods
function vc_update_defaults() {
// Default single image to size "full"
$param = WPBMap::getParam( 'vc_single_image', 'img_size' );
$param['value'] = 'full';
vc_update_shortcode_param( 'vc_single_image', $param );
// Modify button 2 styles to use custom colors
$colors_arr = array(
__( 'Custom Color #1', 'js_composer' ) => 'custom_classname_1',
__( 'Custom Color #2', 'js_composer' ) => 'custom_classname_2'