mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
bd7a4b29cb
[skip ci]
97 lines
No EOL
2.5 KiB
HTML
97 lines
No EOL
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>EXAMPLES</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link rel="icon" type="image/png" sizes="174x174" href="./style/favicon.png">
|
|
|
|
<script type="text/javascript" src="./scripts/jquery.min.js"></script>
|
|
<script type="text/javascript" src="https://tonejs.github.io/Logo/build/Logo.js"></script>
|
|
<script type="text/javascript" src="./scripts/ExampleList.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="./style/examples.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
|
|
|
|
</head>
|
|
<body>
|
|
<div id="Content" class="Example">
|
|
<iframe></iframe>
|
|
<div id="Sidebar"></div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var container = $("#Sidebar");
|
|
|
|
$(function(){
|
|
|
|
var topbar = $("<div>").attr("id", "TopBar");
|
|
$("body").prepend(topbar);
|
|
|
|
// make the hamburger menu
|
|
var hamburger = $("<div>").attr("id", "Hamburger")
|
|
.appendTo(topbar);
|
|
for (var i = 0; i < 3; i++){
|
|
$("<span>").appendTo(hamburger);
|
|
}
|
|
hamburger.on("click", function(){
|
|
$("#Sidebar").toggleClass("Open");
|
|
});
|
|
|
|
//add the Logo
|
|
Logo({
|
|
"container" : topbar.get(0),
|
|
"height" : topbar.height() - 6,
|
|
"width" : 140
|
|
});
|
|
|
|
for (var catName in ExampleList){
|
|
$("<div>").addClass("Category").text(catName).appendTo(container);
|
|
var category = ExampleList[catName];
|
|
for (var example in category){
|
|
$("<div>").addClass("Item")
|
|
.appendTo(container)
|
|
.html($("<a>").attr("href", "#" + category[example]).text(example));
|
|
}
|
|
}
|
|
|
|
$(window).on("hashchange", setHash);
|
|
|
|
function setHash(){
|
|
var hash = window.location.hash.substring(1);
|
|
if (hash === ""){
|
|
return;
|
|
}
|
|
var exampleName;
|
|
//split hash at the .
|
|
if (hash.split(".").length === 2){
|
|
var split = hash.split(".");
|
|
hash = split[0];
|
|
exampleName = split[1];
|
|
}
|
|
var url = location.protocol+'//'+location.host+location.pathname + hash + ".html";
|
|
$("iframe").attr("src", url);
|
|
|
|
// close the sidebar if it's open
|
|
if ($("#Sidebar").hasClass("Open")){
|
|
$("#Sidebar").removeClass("Open");
|
|
}
|
|
|
|
// add the source link
|
|
var srcUrl = "https://github.com/Tonejs/Tone.js/blob/master/examples/"+hash+".html"
|
|
if (!$("#Source").length){
|
|
$("<a id=\"Source\"></a>").appendTo("#Content");
|
|
}
|
|
$("#Source").attr("href", srcUrl);
|
|
}
|
|
|
|
//set it initially
|
|
setHash();
|
|
});
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html> |