[ Launch: very simple browser test ] 9e675c8cd14a23484b67 by ninjaPixel
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
var gulp = require('gulp'), | |
less = require('gulp-less'), | |
path = require('path'), | |
jade = require('gulp-jade'), | |
livereload = require('gulp-livereload'); | |
var MY_LOCALS = {errLogToConsole: true}; | |
gulp.task('default', function() { | |
// place code for your default task here |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Treemap</title> | |
</head> | |
<style> | |
.d3-tip { | |
line-height: 1; | |
padding: 8px; | |
background: rgba(100, 100, 100, 0.7); |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Donut Chart</title> | |
</head> | |
<style> | |
path { | |
stroke-width: 5px; | |
} |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Histogram</title> | |
</head> | |
<style> | |
.ninja-axis path, | |
.ninja-axis line { | |
fill: none; |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Bar Chart</title> | |
</head> | |
<style> | |
.ninja-axis path, | |
.ninja-axis line { | |
fill: none; |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Bubble Chart</title> | |
</head> | |
<style> | |
.ninja-axis path, | |
.ninja-axis line { | |
fill: none; |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Line Chart</title> | |
</head> | |
<style> | |
.ninja-axis path, | |
.ninja-axis line { | |
fill: none; |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>ninjaPixel.js Bar Chart</title> | |
</head> | |
<style> | |
.ninja-axis path, | |
.ninja-axis line { | |
fill: none; |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
margin: 0; | |
} | |
.map { | |
position: relative; | |
overflow: hidden; | |
} |