easyctf-2017/web/pages/about.html

94 lines
2.5 KiB
HTML
Raw Normal View History

2016-01-02 18:44:51 +00:00
<script type="text/javascript">
var chart1 = c3.generate({
colors: {
data1: '#1F77B4',
data2: '#62AC5B',
},
data: {
columns: [
['US High School/Middle School ', 33.33],
['Non-US/Non-Student', 66.66],
],
type: 'donut',
onclick: function(d, i) {
console.log("onclick", d, i);
},
onmouseover: function(d, i) {
console.log("onmouseover", d, i);
},
onmouseout: function(d, i) {
console.log("onmouseout", d, i);
}
},
donut: {
title: "Competitors"
},
bindto: "#chart1"
});
/*var chart2 = c3.generate({
colors: {
data1: '#1F77B4',
data2: '#62AC5B',
},
data: {
columns: [
['Solved ', 33.33],
['Unsolved', 66.66],
],
type: 'donut',
onclick: function(d, i) {
console.log("onclick", d, i);
},
onmouseover: function(d, i) {
console.log("onmouseover", d, i);
},
onmouseout: function(d, i) {
console.log("onmouseout", d, i);
}
},
donut: {
title: "Silly Ceasar"
},
bindto: "#chart2"
});
var chart3 = c3.generate({
colors: {
data1: '#1F77B4',
data2: '#62AC5B',
},
data: {
columns: [
['Solved ', 16],
['Unsolved', 25],
],
type: 'donut',
onclick: function(d, i) {
console.log("onclick", d, i);
},
onmouseover: function(d, i) {
console.log("onmouseover", d, i);
},
onmouseout: function(d, i) {
console.log("onmouseout", d, i);
}
},
donut: {
title: "Hard Binary"
},
bindto: "#chart3"
});*/
</script>
2016-01-02 06:01:34 +00:00
<div class="fade_in text-center">
2016-01-02 02:57:40 +00:00
<h1 class="heading1">About</h1>
2016-01-02 18:57:24 +00:00
<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="1000em" height="500em" src="https://maps.google.com/maps?hl=en&q=Lebanon, Kansas&ie=UTF8&t=hybrid&z=3&iwloc=B&output=embed"></iframe>
2016-01-02 18:44:51 +00:00
<br>
<div id="chart1"></div>
<br>
<!--<div id="chart2"></div>
<br>
<div id="chart3"></div>-->
<br>
2016-01-02 06:01:34 +00:00
</div>