More progress :D

This commit is contained in:
warlordjones
2016-03-17 21:13:55 +00:00
parent 6a5956964a
commit 99a963a3e1
4 changed files with 298 additions and 23 deletions

View File

@@ -2,16 +2,28 @@ body {
font-family: 'Raleway', sans-serif;
font-family: 'Raleway', sans-serif;
color: white;
padding: 0px;
margin: 0px;
background-color: #232323
padding: 0px;
margin: 0px;
background-color: #0A0A0A;
}
hr {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
connection {
border: 10px white;
}
.center {
margin-left: auto;
margin-right: auto;
}
.shadowed {
-webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

View File

@@ -3,41 +3,62 @@
<head>
<link href='css/main.css' rel='stylesheet'>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
<script src="http://code.jquery.com/jquery-2.2.1.min.js" integrity="sha256-gvQgAFzTH6trSrAWoH1iPo9Xc96QxSZ3feW6kem+O00=" crossorigin="anonymous"></script>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>.pkt_added {text-decoration:none !important;}</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
.pkt_added {
text-decoration: none !important;
}
</style>
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<div class="center" style="width: 100%; text-align: center; background-image: url(https://upload.wikimedia.org/wikipedia/commons/6/6e/Veil_Nebula_-_NGC6960.jpg); background-color: cover;">
<div class="center" style="height: 100%;
<script src="javascripts/jquery.connections.js"></script>
<script>
jQuery(document).ready(function () {
jQuery('#parent').connections({
to: "#child"
});
});
</script>
<div class="center" style="width: 100%; text-align: center; background-image: url(https://upload.wikimedia.org/wikipedia/commons/6/6e/Veil_Nebula_-_NGC6960.jpg); background-color: cover; box-shadow: 0px 30px 40px rgba(0,0,0,.6);">
<div class="center" style="height: 100%;
padding-top: 100px;
padding-bottom: 30px;
background-color: rgba(0, 0, 0, 0.5);">
<div class="container">
<!--TODO-->
<h1 style="fo">Arona Jones</h1><h3 style="font-weight: 400;
<div class="container">
<!--TODO-->
<h1 style="fo">Arona Jones</h1>
<h3 style="font-weight: 400;
margin-top: 0px;
margin-bottom: -5px;"><span style="padding: 8px;">Developer </span><span style="padding: 8px;"> Science Enthusiast </span><span style="padding: 8px;"> Writer</span></h3>
<br>
<div class="divider"></div>
</div>
</div>
</div>
<br>
<div class="divider"></div>
<br>
<div class="container shadowed" style="background-color: #232323">
<div class="row center">
<div class="col s4">Test</div>
<div class="col s4" style="background-color: #3D3D3D">Test</div>
<div class="col s4">Test</div>
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,30 @@
{
"name": "connections",
"title": "jQuery Connections",
"version": "1.0.0",
"description": "Add stylable lines connecting page elements. Handy for visualizing relations and graph edges.",
"keywords": [
"border",
"connect",
"edge",
"graph",
"line",
"style"
],
"author": {
"name": "Diamond/Musclesoft Crew"
},
"licenses": [
{
"type": "MIT",
"url": "http://musclesoft.github.com/jquery-connections/LICENSE.txt"
}
],
"bugs": "https://github.com/musclesoft/jquery-connections/issues",
"demo": "http://musclesoft.github.com/jquery-connections/",
"docs": "https://github.com/musclesoft/jquery-connections/wiki",
"homepage": "https://github.com/musclesoft/jquery-connections",
"dependencies": {
"jquery": ">=1.9"
}
}

View File

@@ -0,0 +1,212 @@
(function($) {
$.fn.connections = function(options) {
if (options === 'update') {
return processConnections(update, this);
} else if (options === 'remove') {
return processConnections(destroy, this);
} else {
options = $.extend(true, {
borderClasses: {},
'class': 'connection',
css: {},
from: this,
tag: 'connection',
to: this,
within: ':root'
}, options);
connect(options);
return this;
}
};
$.event.special.connections = {
teardown: function(namespaces) {
processConnections(destroy, $(this));
}
}
var connect = function(options) {
var borderClasses = options.borderClasses;
var tag = options.tag;
var end1 = $(options.from);
var end2 = $(options.to);
var within = $(options.within);
delete options.borderClasses;
delete options.tag;
delete options.from;
delete options.to;
delete options.within;
within.each(function() {
var container = this;
var done = new Array();
end1.each(function() {
var node = this;
done.push(this);
end2.not(done).each(function() {
createConnection(container, [node, this], tag, borderClasses, options);
});
});
});
};
var createConnection = function(container, nodes, tag, borderClasses, options) {
var css = $.extend({ position: 'absolute' }, options.css);
var connection = $('<' + tag + '/>', options).css(css);
connection.appendTo(container);
var border_w = (connection.outerWidth() - connection.innerWidth()) / 2;
var border_h = (connection.outerHeight() - connection.innerHeight()) / 2;
if (border_w <= 0 && border_h <= 0) {
border_w = border_h = 1;
}
var data = {
borderClasses: borderClasses,
border_h: border_h,
border_w: border_w,
node_from: $(nodes[0]),
node_to: $(nodes[1]),
nodes_dom: nodes,
css: css
}
if ('none' === connection.css('border-top-style')) {
data.css.borderStyle = 'solid';
}
$.data(connection.get(0), 'connection', data);
$.data(connection.get(0), 'connections', [connection.get(0)]);
for (var i = 0; i < 2; i++) {
var connections = connection.add($.data(nodes[i], 'connections')).get();
$.data(nodes[i], 'connections', connections);
if (connections.length == 1) {
$(nodes[i]).on('connections.connections', false);
}
}
update(connection.get(0));
};
var destroy = function(connection) {
var nodes = $.data(connection, 'connection').nodes_dom;
for (var i = 0; i < 2; i++) {
var connections = $($.data(nodes[i], 'connections')).not(connection).get();
$.data(nodes[i], 'connections', connections);
}
$(connection).remove();
};
var getState = function(data) {
data.rect_from = data.nodes_dom[0].getBoundingClientRect();
data.rect_to = data.nodes_dom[1].getBoundingClientRect();
var cached = data.cache;
data.cache = [
data.rect_from.top, data.rect_from.right, data.rect_from.bottom, data.rect_from.left,
data.rect_to.top, data.rect_to.right, data.rect_to.bottom, data.rect_to.left
];
data.hidden = (0 === (data.cache[0] | data.cache[1] | data.cache[2] | data.cache[3])) ||
(0 === (data.cache[4] | data.cache[5] | data.cache[6] | data.cache[7]));
data.unmodified = true;
if (cached === undefined) {
return data.unmodified = false;
}
for (var i = 0; i < 8; i++) {
if (cached[i] !== data.cache[i]) {
return data.unmodified = false;
}
}
}
var update = function(connection) {
var data = $.data(connection, 'connection');
getState(data);
if (data.unmodified) {
return;
}
var border_h = data.border_h;
var border_w = data.border_w;
var from_node = data.node_from;
var to_node = data.node_to;
var from = data.rect_from;
var to = data.rect_to;
var b = (from.bottom + from.top) / 2;
var r = (to.left + to.right) / 2;
var t = (to.bottom + to.top) / 2;
var l = (from.left + from.right) / 2;
var h = ['right', 'left'];
if (l > r) {
h = h.reverse();
var x = Math.max(r - border_w / 2, Math.min(from.right, to.right));
r = l + border_w / 2;
l = x;
} else {
l -= border_w / 2;
r = Math.min(r + border_w / 2, Math.max(from.left, to.left));
}
var v = ['bottom', 'top'];
if (t > b) {
v = v.reverse();
var x = Math.max(b - border_h / 2, Math.min(from.bottom, to.bottom));
b = t + border_h / 2;
t = x;
} else {
b = Math.min(b, Math.max(from.top, to.top));
t -= border_h / 2;
}
var width = r - l;
var height = b - t;
if (width < border_w) {
t = Math.max(t, Math.min(from.bottom, to.bottom));
b = Math.min(b, Math.max(from.top, to.top));
l = Math.max(from.left, to.left);
r = Math.min(from.right, to.right);
r = l = (l + r - border_w) / 2;
}
if (height < border_h) {
l = Math.max(l, Math.min(from.right, to.right));
r = Math.min(r, Math.max(from.left, to.left));
t = Math.max(from.top, to.top);
b = Math.min(from.bottom, to.bottom);
b = t = (t + b - border_h) / 2;
}
width = r - l;
height = b - t;
width <= 0 && (border_h = 0);
height <= 0 && (border_w = 0);
var style =
'border-' + v[0] + '-' + h[0] + '-radius: 0;' +
'border-' + v[0] + '-' + h[1] + '-radius: 0;' +
'border-' + v[1] + '-' + h[0] + '-radius: 0;';
(border_h <= 0 || border_w <= 0) && (style += 'border-' + v[1] + '-' + h[1] + '-radius: 0;');
if (data.hidden) {
style += 'display: none;';
} else {
data.css['border-' + v[0] + '-width'] = 0;
data.css['border-' + h[0] + '-width'] = 0;
data.css['border-' + v[1] + '-width'] = border_h;
data.css['border-' + h[1] + '-width'] = border_w;
var current_rect = connection.getBoundingClientRect();
data.css.left = connection.offsetLeft + l - current_rect.left;
data.css.top = connection.offsetTop + t - current_rect.top;
data.css.width = width - border_w;
data.css.height = height - border_h;
}
var bc = data.borderClasses;
$(connection).
removeClass(bc[v[0]]).removeClass(bc[h[0]]).
addClass(bc[v[1]]).addClass(bc[h[1]]).
attr('style', style).
css(data.css);
}
var processConnections = function(method, elements) {
return elements.each(function() {
var connections = $.data(this, 'connections');
if (connections instanceof Array) {
for (var i = 0, len = connections.length; i < len; i++) {
method(connections[i]);
}
}
});
};
})(jQuery);