This file contains hidden or 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
/** | |
* Created by shramee on 28/02/17. | |
*/ | |
var particles = {}, | |
particleProps = {}, | |
particleFixOutOfViewport = function ( p, k ) { | |
var | |
flipSign = 1, | |
max = particleProps[ k + 'Max']; | |
if ( p[k] > max/2 ) { // if particle is in greater half |
This file contains hidden or 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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
/* Autoprefixing all css files in theme root */ | |
autoprefixer: { | |
options : { | |
browsers : ['last 2 versions'], | |
}, | |
multiple_files : { |
NewerOlder