annotate index.html @ 736:33d7a1faa50b

Merged. Updated parts RE Brechts email. browser compatibility, manipulation of audio: volume slider, loudness equalisation, cross-fade.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Wed, 14 Oct 2015 20:59:21 +0100
parents cbfc18a7d068
children 7b522c145516 b7fd0296c6ab
rev   line source
BrechtDeMan@716 1 <!DOCTYPE html>
BrechtDeMan@716 2 <html lang="en">
BrechtDeMan@716 3 <head>
BrechtDeMan@716 4 <meta charset="utf-8" />
BrechtDeMan@716 5
BrechtDeMan@716 6
BrechtDeMan@716 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
BrechtDeMan@716 8 Remove this if you use the .htaccess -->
BrechtDeMan@716 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
BrechtDeMan@716 10
BrechtDeMan@716 11 <title>Web Audio Evaluation Tool</title>
BrechtDeMan@716 12 <meta name="description" content="" />
BrechtDeMan@716 13 <meta name="author" content="" />
BrechtDeMan@716 14
BrechtDeMan@716 15 <!-- Load up the default core JS and CSS files-->
BrechtDeMan@716 16 <link rel='stylesheet' type='text/css' href='core.css'>
BrechtDeMan@716 17 <!-- Use jQuery hosted from Google CDN -->
BrechtDeMan@716 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
BrechtDeMan@716 19 <script src="jquery-2.1.4.js"></script>
BrechtDeMan@716 20 <script src='core.js'></script>
BrechtDeMan@716 21 <script type="text/javascript">
BrechtDeMan@716 22 window.onbeforeunload = function() {
BrechtDeMan@716 23 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
BrechtDeMan@716 24 };
BrechtDeMan@716 25 </script>
BrechtDeMan@716 26 <!-- Uncomment the following script for automatic loading of projects -->
BrechtDeMan@716 27 <script>
BrechtDeMan@716 28 //url = '/pseudo.xml'; //Project XML document location
BrechtDeMan@716 29 url = 'example_eval/project.xml';
BrechtDeMan@716 30 loadProjectSpec(url);
BrechtDeMan@716 31 </script>
BrechtDeMan@716 32
BrechtDeMan@716 33 </head>
BrechtDeMan@716 34
BrechtDeMan@716 35 <body>
BrechtDeMan@716 36 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
BrechtDeMan@716 37 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
BrechtDeMan@716 38 <div id='topLevelBody'>
BrechtDeMan@716 39 <p>HTML5 APE Tool</p>
BrechtDeMan@716 40 </div>
BrechtDeMan@716 41 </body>
BrechtDeMan@716 42 </html>