lewicki.me please
hallo,
ich habe diesen code:
Liegt das daran, dass ich intput type mit style hab?
LG
ich habe diesen code:
warum funktioniert das bei mir nicht?<audio id="loop">
<source src="loop-02.mp3" type="audio/mpeg" />
<source src="loop-02.ogg" type="audio/ogg" />
<p>Dieser Browser unterstützt HTML5 audio nicht</p>
</audio>
<button type="button"
style="top: 50%;
height: 64px;
width: 94px;
background: url(img/ui/over/sound1.png);
position: fixed;
z-index: 9999;
font-size: 12px;
margin-top: 95px;
right: -12px;
opacity: 1;
border:none;
cursorointer;
display:none; "
onclick="play()" value="Play" >
</button>
<script type="text/javascript">
var audio = document.getElementById('loop');
function play() { audio.play(); }
function pause() { audio.pause(); }
function rewind() { audio.currentTime = 0; }
</script>
Liegt das daran, dass ich intput type mit style hab?
LG
Zuletzt bearbeitet: