I have a link which links to an audio file hosted on Soundcloud. Clicking the link opens up a new webpage. Is it possible to have an audio player/youtube video (i could easily transfer from soundcloud to Youtube if necessary) and have the player open up within the page - something like a light box effect?
HTML is:
<div class="audiodemo">
<div class="audiodemoheader"> “Welcome to the Recovery Show, who's on board?” </div>
<div class="audiodemolink"><a href="https://soundcloud.com/iamdanmorris/dan- morris-radio-demo" class="demolink">Listen</a></div>
</div>
CSS is:
.audiodemo {
width: 100%;
height: 300px;
float: left;
background-image:url(images/audio_demo_background.jpg);
}
.audiodemoheader {
width:100%;
height:auto;
text-align:center;
float:left;
margin-top:94.5px;
font: 200 18px/1.3 'Roboto', 'Helvetica Neue', 'Segoe UI Light', sans-serif;
font-size: 30px;
font-weight: 200;
color: #FFF;
}
.audiodemolink {
width:100%;
height:auto;
text-align:center;
float:left;
margin-top:40px;
}
.audiodemolink .demolink {
display: inline-block;
font-weight: 700;
text-transform: uppercase;
padding: 11px 51px;
border: 3px solid #fff;
-webkit-transition: .2s;
transition: .2s;
color:#FFF;
text-decoration:none;
margin-left:auto;
margin-right:auto;
}
.audiodemolink .demolink:hover {
opacity: 0.7;
}
Thanks in advance.