Last active
February 6, 2018 12:07
-
-
Save MattWoelk/6132258 to your computer and use it in GitHub Desktop.
d3.js Loading Spinner Icon
This file contains 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 lang="en"> | |
<head> | |
</head> | |
<body> | |
<div id="loader_container"></div> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
function loader(config) { | |
return function() { | |
var radius = Math.min(config.width, config.height) / 2; | |
var tau = 2 * Math.PI; | |
var arc = d3.svg.arc() | |
.innerRadius(radius*0.5) | |
.outerRadius(radius*0.9) | |
.startAngle(0); | |
var svg = d3.select(config.container).append("svg") | |
.attr("id", config.id) | |
.attr("width", config.width) | |
.attr("height", config.height) | |
.append("g") | |
.attr("transform", "translate(" + config.width / 2 + "," + config.height / 2 + ")") | |
var background = svg.append("path") | |
.datum({endAngle: 0.33*tau}) | |
.style("fill", "#4D4D4D") | |
.attr("d", arc) | |
.call(spin, 1500) | |
function spin(selection, duration) { | |
selection.transition() | |
.ease("linear") | |
.duration(duration) | |
.attrTween("transform", function() { | |
return d3.interpolateString("rotate(0)", "rotate(360)"); | |
}); | |
setTimeout(function() { spin(selection, duration); }, duration); | |
} | |
function transitionFunction(path) { | |
path.transition() | |
.duration(7500) | |
.attrTween("stroke-dasharray", tweenDash) | |
.each("end", function() { d3.select(this).call(transition); }); | |
} | |
}; | |
} | |
var myLoader = loader({width: 960, height: 500, container: "#loader_container", id: "loader"}); | |
myLoader(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi!
I have a problem using this in Safari during the reloading of a new web page. The main idea is that this spinner should spin while the new page is loading. Although this works just fine in Firefox, Chrome and Explorer, this does not work in Safari. I also posted this question to StackOverflow (http://stackoverflow.com/questions/22795269/d3-js-loading-spinner-not-functioning-properly-in-safari).
Do you have any ideas how to fix this?