I have links with vimeo urls in them:
<a class="video" href="http://vimeo.com/9532951">link 1</a>
<a class="video" href="http://vimeo.com/8228482">link 2</a>
Then I have manual fancybox call that loads the video into a fancybox:
<script>
$("a.video").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 400,
'height' : 265,
'href' : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
'type' : 'swf'
});
return false;
});
</script>
ビデオプレーヤーに引数を渡す方法を一生理解できません... autoplay = 1またはfullscreen = 1などなど。いくつか試してみましたが、何も機能しませんでした。追加のようなものだと思っていまし'swf' : 'autoplay=1'
たが、うまくいきませんでした。とにかく、どんな助けでも大歓迎です
ありがとう。