Skip to content

Instantly share code, notes, and snippets.

@maxkfranz
maxkfranz / gist:2c23fe9a23d0cc8d43af
Last active December 12, 2016 18:21
tokyo-railways-style.cycss
node {
background-color: white;
border-color: black;
content: data(station_name);
width: 20;
height: 20;
min-zoomed-font-size: 12;
color: #fff;
font-size: 16;
z-index: 1;
@maxkfranz
maxkfranz / index.html
Last active August 11, 2016 10:22
cose demo
<!DOCTYPE>
<html>
<head>
<title>cose demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
@maxkfranz
maxkfranz / code.js
Last active July 5, 2016 14:23
Compound nodes
$(function(){ // on dom ready
var cy = cytoscape({
container: document.getElementById('cy'),
boxSelectionEnabled: false,
autounselectify: true,
style: [
{
@maxkfranz
maxkfranz / tokyo-railways-style-2.cycss
Created April 5, 2016 17:06
tokyo-railways-style-2.cycss
node {
background-color: white;
border-color: black;
content: data(station_name);
width: 20;
height: 20;
color: #fff;
font-size: 16;
}
@maxkfranz
maxkfranz / index.html
Last active October 27, 2015 15:24
edge types
<!DOCTYPE>
<html>
<head>
<title>Edge types demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script src="http://cytoscape.github.io/cytoscape.js/api/cytoscape.js-latest/cytoscape.min.js"></script>
@maxkfranz
maxkfranz / index.html
Created October 26, 2015 20:19
labels
<!DOCTYPE>
<html>
<head>
<title>Labels demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script src="http://cytoscape.github.io/cytoscape.js/api/cytoscape.js-latest/cytoscape.min.js"></script>
@maxkfranz
maxkfranz / code.js
Last active October 21, 2015 17:31
Linkouts
$(function(){ // on dom ready
var cy = cytoscape({
container: $('#cy')[0],
boxSelectionEnabled: false,
autounselectify: true,
style: cytoscape.stylesheet()
.selector('node')
@maxkfranz
maxkfranz / index.html
Last active October 21, 2015 17:21
grid demo
<!DOCTYPE>
<html>
<head>
<title>Grid demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
@maxkfranz
maxkfranz / index.html
Last active October 21, 2015 17:20
concentric demo
<!DOCTYPE>
<html>
<head>
<title>Concentric demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
core {
active-bg-color: #fff;
active-bg-opacity: 0.333;
}
edge {
curve-style: haystack;
haystack-radius: 0;
opacity: 0.333;
width: 2;