好的,我再也看不到了.我正在使用the scrollTo plugin并在我的网站上有一个scrollTo功能.它工作,现在突然间它没有……
这是我的代码:
$(document).ready(function() {
$('header').delay(300).fadeIn(750);
$('#intro_text').delay(800).fadeIn(750);
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia",{
m4v: "mi4.m4v",ogv: "mi4.ogv",webmv: "mi4.webm",poster: "mi4.png"
});
},swfPath: "js",supplied: "webmv,ogv,m4v",size: {
width: "570px",height: "340px",cssClass: "jp-video-360p"
}
});
});
$(function(toDemos) {
$('h1').click(function() {
$.scrollTo('#intro',800);
});
});
$(function(toDemos) {
$('#contact').click(function() {
$.scrollTo('footer',800);
});
});
$(function(toDemos) {
$('#demos').click(function() {
$.scrollTo('#content',800);
});
});
$(function(toDemos) {
$('#toTop').click(function() {
$.scrollTo('#intro',800);
});
});
$(function() {
$("#playlist li").on("click",function() {
$("#videoarea").attr({
"src": $(this).attr("movieurl"),"poster": "","autoplay": "autoplay"
})
})
$("#videoarea").attr({
"src": $("#playlist li").eq(0).attr("movieurl"),"poster": $("#playlist li").eq(0).attr("moviesposter")
})
})
我只是一个初学者,但我认为我做错了.
这里有什么不对吗?我看不出来.
希望你们中的一个能够!非常感谢提前.
最佳答案
原文链接:https://www.f2er.com/jquery/428194.html