https://www.dropbox.com/ - their play button, how do they create that effect? From what I can see they are using:
<script type="text/javascript" charset="utf-8">
document.observe("dom:loaded", function () {
var play_link = $("playvideo");
play_link.observe("mouseover", function () {
new Effect.Opacity(play_link.down("img"), { duration: 0.2, to: 1.0 });
});
play_link.observe("mouseout", function () {
new Effect.Opacity(play_link.down("img"), { duration: 0.2, to: 0.5 });
})
if (!FlashDetect.versionAtLeast(9)) {
$("has_flash").hide();
$("no_flash").show();
}
});
function play_screencast() {
Home.showScreencast('commoncraft', true);
}
</script>
But not sure how to create this effect on our site. I am running .NET. Thanks so much.