我正在使用我在此处找到的模板构建iOS7 WebApp: http://c2prods.com/2013/cloning-the-ui-of-ios-7-with-html-css-and-javascript/
我已经编写了一些JavaScript / jQuery,用于淡化图片并首先淡化工具栏中的工具栏。我有一个空白的测试页面,我测试了脚本。它完美地运作。然后我将EXACT SAME代码复制并粘贴到真实页面中,jQuery似乎永远不会出于任何原因加载。它给出了一个错误说明如下:
未捕获的TypeError:对象#没有方法'fadeOut'
褪色应该在3秒后发生。这个想法是这是一个闪屏。
这是我的JS / jQuery:
$(document).ready(function() {
fadeAwaySplash();
navFadeIn();
//Insert More Functions Here
});
function fadeAwaySplash() {
//setTimeout(function() {
$("#splash-screen").fadeOut();
//}, 3000);
}
function navFadeIn(){
setTimeout(function() {
$("nav").fadeIn();
}, 3000);
}
这是我的CSS:
nav {
position: fixed;
bottom: 0;
width: 100%;
height: 49px;
text-align: center;
background-color: rgba(248, 248, 248, 0.9);
background-image: linear-gradient(180deg, rgb(200, 199, 204), rgb(200, 199, 204) 50%, transparent 50%);
background-size: 100% 1px;
background-repeat: no-repeat;
background-position: top center;
z-index: 100;
display: none;
}
#splash-screen {
position: absolute;
z-index: 999999;
width: 100%;
height: 100%;
min-width: 100%;
min-height: 100%;
max-width: 100%;
max-height: 100%;
}
这是我的HTML:
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<img src="/img/ipadSplash.png" id="splash-screen">
非常感谢任何帮助。
提前致谢, 以马内利
答案 0 :(得分:0)
大! scragar的答案奏效了!我所要做的就是用&#34; jQuery&#34;替换$&#39; (不带引号)。虽然我不得不用.delay(3000)替换setTimeout谢谢!