nothing to commit
This commit is contained in:
parent
d60e544e0e
commit
daf2a6d9fd
@ -153,6 +153,8 @@ $(document).ready(function() {
|
|||||||
{
|
{
|
||||||
start: function(event, ui) { $(this).css('z-index', a++); }
|
start: function(event, ui) { $(this).css('z-index', a++); }
|
||||||
});});
|
});});
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
@ -397,18 +397,18 @@ h2 {
|
|||||||
.topleft {
|
.topleft {
|
||||||
float: right;
|
float: right;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 100%;
|
font-size: 140%;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thesisX {
|
.thesisX {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index:5;
|
z-index:5;
|
||||||
left: 46%;
|
left: 48%;
|
||||||
top: 14%;
|
top: 14%;
|
||||||
float: right;
|
float: right;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 100%;
|
font-size: 140%;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -416,6 +416,7 @@ h2 {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* about and colophon */
|
/* about and colophon */
|
||||||
#menu {
|
#menu {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
|
6
static/js/d3_map.js
vendored
6
static/js/d3_map.js
vendored
@ -69,10 +69,10 @@ d3.json("/static/js/group1.json", function(error, json) {
|
|||||||
console.log('vid')
|
console.log('vid')
|
||||||
if (i.url) {
|
if (i.url) {
|
||||||
divVideo.transition().duration(100);
|
divVideo.transition().duration(100);
|
||||||
divVideo.html("<div class='draggable' id='showvideo'><span onclick=closevideo() class='topleft'> × </span><iframe id='video" + i.id + "' width='300' height='150' src='" + i.url + "' frameborder='0' allow='accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture' allowfullscreen></iframe></div>");
|
divVideo.html("<div id='showvideo'><span onclick=closevideo() class='topleft'> × </span><iframe id='video" + i.id + "' width='300' height='150' src='" + i.url + "' frameborder='0' allow='accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture' allowfullscreen></iframe></div>");
|
||||||
};
|
};
|
||||||
divBio.transition().duration(100);
|
divBio.transition().duration(100);
|
||||||
divBio.html("<div class='draggable' id='showbio'><span onclick=closebio() class='topleft'> × </span><div id='bio" + i.id + "'>" + i.bio + "</div>");
|
divBio.html("<div id='showbio'><span onclick=closebio() class='topleft'> × </span><div id='bio" + i.id + "'>" + i.bio + "</div>");
|
||||||
popup(i.id, i.time);
|
popup(i.id, i.time);
|
||||||
})
|
})
|
||||||
.on("dblclick", connectedNodes)
|
.on("dblclick", connectedNodes)
|
||||||
@ -80,6 +80,7 @@ d3.json("/static/js/group1.json", function(error, json) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
force.on("tick", function() {
|
force.on("tick", function() {
|
||||||
link.attr("x1", function(d) {
|
link.attr("x1", function(d) {
|
||||||
return d.source.x;
|
return d.source.x;
|
||||||
@ -101,6 +102,7 @@ d3.json("/static/js/group1.json", function(error, json) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// highlight NodeLists//Toggle stores whether the highlighting is on
|
// highlight NodeLists//Toggle stores whether the highlighting is on
|
||||||
var toggle = 0;
|
var toggle = 0;
|
||||||
//Create an array logging what is connected to what
|
//Create an array logging what is connected to what
|
||||||
|
Loading…
Reference in New Issue
Block a user