我擁有它,所以當你點擊右上角的氫元素時,它會在大中心div中播放視頻並顯示有關氫氣的信息。我在當地工作,但我無法讓它在網上工作。 請任何幫助將是偉大的。本地工作但不在線
這裏是鏈接到我的項目 http://travismichael.net/periodic_elements/
這裏是我的地盤
<script type="text/javascript">
$(document).ready(function() {
$('div.video').hide();
$('.icon').click(function(){
var id=$(this).data('id'),
thisDiv=$("div.video[data-id='" + id +"']"),
thisVideo=$("div.video[data-id='" + id +"']").find('video');
$('video').each(function() {
this.pause();
this.currentTime = 0;
});
$('div.video').not(thisDiv).fadeOut('fast');
thisDiv.fadeIn();
thisVideo.get(0).play();
});
});
</script>
<script type="text/javascript">
$("#periodictable td").hover(function() {
$(this).stop().animate({opacity: "1"}, 'fast');
},
function() {
$(this).stop().animate({opacity: ".7"}, 'slow');
});
</script>
你的控制檯出現了什麼錯誤? –
'$('video')。each'正在拋出'未捕獲錯誤:INVALID_STATE_ERR:DOM異常11' – jbabey