我正在创建一个网页,并从Codepen复制了代码,但遇到了问题...
HTML 代码:
<div class="container">
<section class="background up-scroll">
<div class="content-wrapper">
<p class="content-title">Full Page Parallax Effect</p>
<p class="content-subtitle">Scroll down and up to see the effect!</p>
</div>
</section>
<section class="background up-scroll">
<div class="content-wrapper">
<p class="content-title">Cras lacinia non eros nec semper.</p>
<p class="content-subtitle">Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras ut massa mattis nibh semper pretium.</p>
</div>
</section>
<section class="background">
<div class="content-wrapper">
<p class="content-title">Etiam consequat lectus.</p>
<p class="content-subtitle">Nullam tristique urna sed tellus ornare congue. Etiam vitae erat at nibh aliquam dapibus.</p>
</div>
</section>
</div>
CSS 代码:
@import url(https://fonts.googleapis.com/css?family=Montserrat);
// ------------- MIXINS ------------- //
@mixin transition($time, $property: all, $easing: ease-in) {
transition: $property $time $easing;
}
// ------------- VARIABLES ------------- //
html, body {
overflow: hidden;
}
.background {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
will-change: transform;
backface-visibility: hidden;
height: 130vh !important;
position: fixed;
width: 100% !important;
transform: translateY(30vh);
@include transition(1.2s, all, cubic-bezier(0.22, 0.44, 0, 1));
}
&:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,.3);
}
&:first-child {
background-image: url(http://emilyhayman.com/codepens/bgd1.jpg);
transform: translateY(-30vh / 2);
.content-wrapper {
transform: translateY(30vh /2);
}
}
&:nth-child(2) {
background-image: url(http://emilyhayman.com/codepens/photo-1424746219973-8fe3bd07d8e3.jpg);
}
.background:nth-child(3) {
background-image: url(http://emilyhayman.com/codepens/photo-1433840496881-cbd845929862.jpg);
}
}
/* Set stacking context of slides */
@for $i from 1 to (3 + 1) {
.background:nth-child(#{$i}) {
z-index: (3 + 1) - $i;
}
}
.content {
&-wrapper {
height: 100vh;
display: flex;
justify-content: center;
text-align: center;
flex-flow: column nowrap;
color: #fff;
font-family: Montserrat;
text-transform: uppercase;
transform: translateY(40vh);
will-change: transform;
backface-visibility: hidden;
@include transition(1.2s + .5, all, cubic-bezier(0.22, 0.44, 0, 1));
}
&-title {
font-size: 12vh;
line-height: 1.4;
}
}
// ------------- SET TRANSFORM VALUES ------------- //
.background.up-scroll {
transform: translate3d(0,-30vh / 2,0);
.content-wrapper {
transform: translateY(30vh / 2);
}
+ .background {
transform: translate3d(0,30vh,0);
.content-wrapper {
transform: translateY(30vh);
}
}
}
.background.down-scroll {
transform: translate3d(0,-(100vh + 30vh),0);
.content-wrapper {
transform: translateY(40vh);
}
+ .background:not(.down-scroll) {
transform: translate3d(0,-30vh / 2,0);
.content-wrapper {
transform: translateY(30vh / 2);
}
}
}
JS 代码:
// ------------- VARIABLES ------------- //
var ticking = false;
var isFirefox = (/Firefox/i.test(navigator.userAgent));
var isIe = (/MSIE/i.test(navigator.userAgent)) || (/Trident.*rv\:11\./i.test(navigator.userAgent));
var scrollSensitivitySetting = 30; //Increase/decrease this number to change sensitivity to trackpad gestures (up = less sensitive; down = more sensitive)
var slideDurationSetting = 600; //Amount of time for which slide is "locked"
var currentSlideNumber = 0;
var totalSlideNumber = $(".background").length;
// ------------- DETERMINE DELTA/SCROLL DIRECTION ------------- //
function parallaxScroll(evt) {
if (isFirefox) {
//Set delta for Firefox
delta = evt.detail * (-120);
} else if (isIe) {
//Set delta for IE
delta = -evt.deltaY;
} else {
//Set delta for all other browsers
delta = evt.wheelDelta;
}
if (ticking != true) {
if (delta <= -scrollSensitivitySetting) {
//Down scroll
ticking = true;
if (currentSlideNumber !== totalSlideNumber - 1) {
currentSlideNumber++;
nextItem();
}
slideDurationTimeout(slideDurationSetting);
}
if (delta >= scrollSensitivitySetting) {
//Up scroll
ticking = true;
if (currentSlideNumber !== 0) {
currentSlideNumber--;
}
previousItem();
slideDurationTimeout(slideDurationSetting);
}
}
}
// ------------- SET TIMEOUT TO TEMPORARILY "LOCK" SLIDES ------------- //
function slideDurationTimeout(slideDuration) {
setTimeout(function() {
ticking = false;
}, slideDuration);
}
// ------------- ADD EVENT LISTENER ------------- //
var mousewheelEvent = isFirefox ? "DOMMouseScroll" : "wheel";
window.addEventListener(mousewheelEvent, _.throttle(parallaxScroll, 60), false);
// ------------- SLIDE MOTION ------------- //
function nextItem() {
var $previousSlide = $(".background").eq(currentSlideNumber - 1);
$previousSlide.removeClass("up-scroll").addClass("down-scroll");
}
function previousItem() {
var $currentSlide = $(".background").eq(currentSlideNumber);
$currentSlide.removeClass("down-scroll").addClass("up-scroll");
}
//# sourceURL=pen.js
我只是将此代码复制到我的原子编辑器中,并且我将python与Django一起使用 我确定静态文件或此类文件没有问题,但问题是我看不到CSS和JS样式。当我看到Inspect Elements时,我看到某些CSS样式是无效的属性:
.background {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
will-change: transform;
backface-visibility: hidden;
height: 130vh !important;
position: fixed;
width: 100% !important;
transform: translateY(30vh);
&: before { content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,.3);
} &: first-child { background-image: url(http://emilyhayman.com/codepens/bgd1.jpg);
transform: translateY(-30vh / 2);
.content-wrapper { transform: translateY(30vh /2);
} } &: nth-child(2) { background-image: url(http://emilyhayman.com/codepens/photo-1424746219973-8fe3bd07d8e3.jpg);
} .background: nth-child(3) { background-image: url(http://emilyhayman.com/codepens/photo-1433840496881-cbd845929862.jpg);
}: ;
}
问题是在浏览器中我看不到css和js效果。 当我打开Inspect元素时,我看到某些CSS样式的属性值错误无效,并且它们被忽略(在:before和firt-child和...附近) 我使用python和Django,我敢肯定静态文件和这类东西都没有问题...
答案 0 :(得分:0)
javascipt的问题是我必须在HTML页面中添加此行
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/0.10.0/lodash.min.js"></script>
顺便说一句,如果您正在使用jquery,请不要忘记在添加Java脚本之前也添加此行...
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>