cms/app-client/app/templates/player.hbs
author nowmad@nowmads-macbook-pro.local
Fri, 15 Jan 2016 15:49:42 +0100
changeset 84 36f84e8f1ad5
parent 65 5d5c30207e4c
child 86 15ded106ef1a
permissions -rw-r--r--
add d3js for langue visu add modal update css
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     1
<div class="corpus-app-content">
65
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     2
  <audio id="audio-player" controls>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     3
    <source src="{{ currentItem.master }}" type="audio/ogg">
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     4
    <source src="{{ currentItem.master }}" type="audio/mpeg">
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     5
    <source src="{{ currentItem.master }}" type="audio/wav">
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     6
    Your browser does not support the audio element.
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     7
  </audio>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     8
  <p>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     9
    Title: {{ currentItem.title }}
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    10
  </p>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    11
  <p>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    12
    Description: {{ currentItem.description }}
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    13
  </p>
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
    14
</div>
84
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    15
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    16
<div id="container">
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    17
	<div id="audio_player">
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    18
		<span class="btn btn_play" id="action_play" title="">Play</span>
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    19
		<div class="background"></div>
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    20
		<div class="progress">
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    21
			<div class="slice">
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    22
				<div class="pie"></div>
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    23
			</div>
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    24
		</div>
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    25
	</div>
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 65
diff changeset
    26
</div>