答案 0 :(得分:0)
您的body标签上设置了display:none
属性。从styles/main.css
文件中的此块中删除它:
body{
margin:0;
padding:0;
background-color:#FCFCFC;
display:none;
}
答案 1 :(得分:0)
Firefox抛出此警告
The character encoding of the HTML document was not declared. The document will render
with garbled text in some browser configurations if the document contains characters from
outside the US-ASCII range. The character encoding of the page must to be declared in the
document or in the transfer protocol.
这可能是一个原因。
我附上了查看源代码的样子。 html
标记以红色突出显示,指出存在错误。
答案 2 :(得分:0)
你可以试试这个而不是fadeIn ..
$('body').css('display','block');