|
|
@ -1,13 +1,13 @@ |
|
|
|
var width = 960, |
|
|
|
height = 500 |
|
|
|
height = 700 |
|
|
|
|
|
|
|
var svg = d3.select(".map_area").append("svg") |
|
|
|
.attr("width", width) |
|
|
|
.attr("height", height); |
|
|
|
|
|
|
|
var force = d3.layout.force() |
|
|
|
.gravity(0.05) |
|
|
|
.distance(200) |
|
|
|
.gravity(0.01) |
|
|
|
.distance(400) |
|
|
|
.charge(-100) |
|
|
|
.size([width, height]); |
|
|
|
|
|
|
@ -29,6 +29,7 @@ d3.json("/static/js/group1.json", function(error, json) { |
|
|
|
.enter().append("g") |
|
|
|
.attr("class", "node") |
|
|
|
.attr("id", function(d){return d.id}) |
|
|
|
// .style("fill",function (d) { return 'red'; })
|
|
|
|
// .on("click", function(d){
|
|
|
|
// scrolldiv(d);
|
|
|
|
// play(d);
|
|
|
@ -59,8 +60,6 @@ d3.json("/static/js/group1.json", function(error, json) { |
|
|
|
}); |
|
|
|
|
|
|
|
// scripts for mouse events
|
|
|
|
// popup
|
|
|
|
// function popup() {
|
|
|
|
$("#dadaloglu").click(function(){ |
|
|
|
$("#showdadaloglu").fadeIn() |
|
|
|
console.log("around") |
|
|
@ -80,8 +79,8 @@ d3.json("/static/js/group1.json", function(error, json) { |
|
|
|
audio2.currentTime = 50; |
|
|
|
// audio2.play();
|
|
|
|
}); |
|
|
|
// };
|
|
|
|
|
|
|
|
//pop-up
|
|
|
|
$(document).click(function (e) { |
|
|
|
if (!$(e.target).parents().andSelf().is('#dadaloglu')) { |
|
|
|
$("#showdadaloglu").fadeOut(); |
|
|
@ -94,16 +93,4 @@ d3.json("/static/js/group1.json", function(error, json) { |
|
|
|
}; |
|
|
|
}); |
|
|
|
|
|
|
|
// scroll
|
|
|
|
// $("#dadaloglu").click(function(){
|
|
|
|
// var elem = document.getElementById("ele");
|
|
|
|
// elem.scrollIntoView();
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|