这是巴拉。我有问题添加外部CSS和JS文件在HTML中。
下面的代码不起作用:
$( window ).ready(function() {
var wHeight = $(window).height();
$('.slide')
.height(wHeight)
.scrollie({
scrollOffset : -50,
scrollingInView : function(elem) {
var bgColor = elem.data('background');
$('body').css('background-color', bgColor);
}
});
});
* { box-sizing: border-box }
body {
font-family: 'Coming Soon', cursive;
transition: background 1s ease;
background: #3498db;
width: 100px;
height: 100px;
}
p {
color: #ecf0f1;
font-size: 2em;
text-align: center;
}
span {
clear: both;
font-size: .7em;
color: #bdc3c7;
}
a {
color: #c0392b;
text-decoration: none;
}
.slide {
.inside {
display: table;
height: 100%;
width: 100%;
padding: 0 3em;
p {
display: table-cell;
width: 100%;
clear: both;
vertical-align: middle;
text-align: center;
}
}
}
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script type="text/javascript" src="code.js"></script>
<link rel="stylesheet" type="text/css" href="2.css" />
</head>
<body>
</body>
</html>
3条答案
按热度按时间pdkcd3nj1#
用下面的代码试试。用下面的代码替换
link
标签:字符串
但这也取决于你的
css
文件存储在哪里。我不知道为什么你张贴的JS部分。也许你可以解释?hof1towb2#
使用
scroll
函数:ecbunoof3#
您向HTML文件添加两行
这一行添加在标记之间
字符串
这条线被添加在标记和关闭的正上方
型
型