Team:Virginia/Tabs

From 2014.igem.org

(Difference between revisions)
 
(60 intermediate revisions not shown)
Line 1: Line 1:
 +
{{Template:Team:Virginia:Test}}
<html>
<html>
<head>
<head>
-
  <meta charset="utf-8">
 
-
  <title>jQuery UI Tabs - Default functionality</title>
 
   <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
   <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
   <script src="//code.jquery.com/jquery-1.10.2.js"></script>
   <script src="//code.jquery.com/jquery-1.10.2.js"></script>
Line 15: Line 14:
       function drawRegionsMap() {
       function drawRegionsMap() {
 +
           var data = google.visualization.arrayToDataTable([
           var data = google.visualization.arrayToDataTable([
               ['Region Code', 'Sub-Continent', 'Popularity'],
               ['Region Code', 'Sub-Continent', 'Popularity'],
-
              ['005', 'South America', 200],
+
['154' ,'Northern European', 30.5],
-
              ['154', 'Northern Europe', 150],
+
['143' ,'Central Asia', 52],
-
              ['034', 'Southern Asia', 80],
+
['021' ,'North American', 38.9],
 +
['039' ,'Southern Europe', 40.6],
 +
['030' ,'Eastern Asia', 34.2],
 +
['155' ,'Western Europe', 30.2],
 +
['151' ,'Eastern Europe', 60],
 +
['034' ,'Southern Asia', 75],
 +
['035' ,'South-Eastern Asia', 0],
 +
['029' ,'Carribean/Central America/South America', 15.6],
 +
['013' ,'Carribean/Central America/South America', 15.6],
 +
['005' ,'Carribean/Central America/South America', 15.6],
 +
['053' ,'Oceania', 33.3],
 +
['054' ,'Oceania', 33.3],
 +
['057' ,'Oceania', 33.3],
 +
['061' ,'Oceania', 33.3],
 +
['145' ,'Western Asia', 100],
 +
['018' ,'', 0],
           ]);
           ]);
-
 
+
 
           var data2 = google.visualization.arrayToDataTable([
           var data2 = google.visualization.arrayToDataTable([
               ['Region Code', 'Sub-Continent', 'Popularity'],
               ['Region Code', 'Sub-Continent', 'Popularity'],
-
              ['005', 'South America', 200],
+
['154' ,'Northern European', 80.5],
-
              ['154', 'Northern Europe', 150],
+
['143' ,'Central Asia',76],
-
              ['034', 'Southern Asia', 80],
+
['021' ,'North American', 90.3],
 +
['039' ,'Southern Europe', 93.8],
 +
['030' ,'Eastern Asia', 83.3],
 +
['155' ,'Western Europe', 82.7],
 +
['151' ,'Eastern Europe',80],
 +
['034' ,'Southern Asia',100],
 +
['035' ,'South-Eastern Asia', 100],
 +
['029' ,'Carribean/Central America/South America', 68.8],
 +
['013' ,'Carribean/Central America/South America', 68.8],
 +
['005' ,'Carribean/Central America/South America', 68.8],
 +
['053' ,'Oceania', 100],
 +
['054' ,'Oceania', 100],
 +
['057' ,'Oceania', 100],
 +
['061' ,'Oceania', 100],
 +
['145' ,'Western Asia', 100],
 +
 
           ]);
           ]);
 +
 
           var options = {
           var options = {
               resolution: 'subcontinents',
               resolution: 'subcontinents',
-
               colorAxis: {colors: ['yellow', 'red']}
+
legend: 'none',
 +
sizeAxis: { minValue: 0, maxValue: 100 },
 +
               colorAxis: {colors: ['white', 'purple']},
 +
backgroundColor: '#EEF8FC'
 +
        ,width:900
 +
          ,height:500
           };
           };
Line 38: Line 74:
           var chart = new google.visualization.GeoChart(document.getElementById('regions_div'));
           var chart = new google.visualization.GeoChart(document.getElementById('regions_div'));
   var chart2 = new google.visualization.GeoChart(document.getElementById('regions_div2'));
   var chart2 = new google.visualization.GeoChart(document.getElementById('regions_div2'));
-
 
           chart.draw(data, options);
           chart.draw(data, options);
chart2.draw(data2, options);
chart2.draw(data2, options);
 +
 +
       }
       }
     </script>
     </script>
Line 48: Line 85:
  <script>
  <script>
   $(function() {
   $(function() {
 +
     $( "#tabs" ).tabs();
     $( "#tabs" ).tabs();
   });
   });
   </script>
   </script>
 +
 +
<style>
 +
#regions_div{
 +
margin: 0 auto;
 +
}
 +
</style>
Line 56: Line 100:
<body>
<body>
   
   
-
<div id="tabs">
+
<div id="regions_div"></div>
-
  <ul>
+
-
    <li><a href="#tabs-1">Nunc tincidunt</a></li>
+
-
    <li><a href="#tabs-2">Proin dolor</a></li>
+
-
    <li><a href="#tabs-3">Aenean lacinia</a></li>
+
-
  </ul>
+
-
  <div id="tabs-1"><div id="regions_div"></div></div>
+
-
  <div id="tabs-2"><div id="regions_div2"></div></div>
+
-
  <div id="tabs-3">yo</div>
+
-
</div>
+
-
+
-
 
</body>
</body>
</html>
</html>

Latest revision as of 00:43, 18 October 2014