ABZiko
پنج شنبه 30 مرداد 1393, 19:48 عصر
سلام، این کد های منه مربوط به پخش صدا :
<html>
<head>
<title>Guitar</title>
<style>
*{
margin:0px;
padding:0px}
.play{
width:150px;
height:150px;
background-color:#0099FF;
font:12px 'Segoe UI';
line-height:150px;
text-align:center;
color:#FFF}
</style>
<script src="jQuery.js"></script>
<script>
var audio=getElementById('audio');
$('play').click(function(e) {
audio.play();
});
</script>
</head>
<body>
<div class="play">Play</div>
<audio id="audio">
<source src="Dom.MP3" />
</audio>
</body>
</html>
<html>
<head>
<title>Guitar</title>
<style>
*{
margin:0px;
padding:0px}
.play{
width:150px;
height:150px;
background-color:#0099FF;
font:12px 'Segoe UI';
line-height:150px;
text-align:center;
color:#FFF}
</style>
<script src="jQuery.js"></script>
<script>
var audio=getElementById('audio');
$('play').click(function(e) {
audio.play();
});
</script>
</head>
<body>
<div class="play">Play</div>
<audio id="audio">
<source src="Dom.MP3" />
</audio>
</body>
</html>