This commit is contained in:
parent
2c59e935f4
commit
25b5ca2d7e
45 changed files with 3862 additions and 0 deletions
69
static/cassette-player/index.html
Normal file
69
static/cassette-player/index.html
Normal file
|
@ -0,0 +1,69 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Old School Cassette Player with HTML5 Audio</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Old School Cassette Player with HTML5 Audio: Vintage format meets modern web tech: an HTML5 audio player with realistic controls" />
|
||||
<meta name="keywords" content="cassette, html5, audio, player, css3, buttons, sounds, vintage, old school, javascript, jquery" />
|
||||
<meta name="author" content="Codrops" />
|
||||
<link rel="shortcut icon" href="../favicon.ico">
|
||||
<link rel="stylesheet" type="text/css" href="css/demo.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/knobKnob.css" />
|
||||
<link href='http://fonts.googleapis.com/css?family=Aldrich' rel='stylesheet' type='text/css' />
|
||||
<script type="text/javascript" src="js/modernizr.custom.69142.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="support-note"><!-- let's check browser support with modernizr -->
|
||||
<span class="no-cssanimations">CSS animations are not supported in your browser</span>
|
||||
<span class="no-csstransforms">CSS transforms are not supported in your browser</span>
|
||||
<span class="no-csstransforms3d">CSS 3D transforms are not supported in your browser</span>
|
||||
<span class="no-csstransitions">CSS transitions are not supported in your browser</span>
|
||||
<span class="note-ie">Sorry, only modern browsers.</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="vc-container" class="vc-container">
|
||||
<div class="vc-tape-wrapper">
|
||||
<div class="vc-tape">
|
||||
<div class="vc-tape-back">
|
||||
<div class="vc-tape-wheel vc-tape-wheel-left"><div></div></div>
|
||||
<div class="vc-tape-wheel vc-tape-wheel-right"><div></div></div>
|
||||
</div>
|
||||
<div class="vc-tape-front vc-tape-side-a">
|
||||
<span>A</span>
|
||||
</div>
|
||||
<div class="vc-tape-front vc-tape-side-b">
|
||||
<span>B</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="vc-loader"></div>
|
||||
</div><!-- //vc-container -->
|
||||
|
||||
|
||||
</div><!-- //container -->
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
||||
<!-- KnobKnob by Martin Angelov : https://github.com/martinaglv/KnobKnob -->
|
||||
<script src="js/transform.js"></script>
|
||||
<script src="js/knobKnob.jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="js/jquery.cassette.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
|
||||
$( '#vc-container' ).cassette();
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue