是否可以在通用过渡笔针混合中创建滚动?

时间:2019-02-23 04:43:02

标签: css transition stylus

JavaScript:

const show = entries => entries[0].isIntersecting ? entries[0].classList.remove('is-hidden') : null;
const observer = new IntersectionObserver(show, {threshold:0});
Array.from(document.querySelectorAll('.js-hidden')).forEach(element => observer.observe(element));

当我像下面这样删除“ .js-hidden”类时,我想在动画中播放淡入淡出……但是此代码不起作用:

HTML:

<div class="my-component js-hidden is-hidden">
    <p class="text text-1">Hello</p>
    <p class="text text-2">World</p>
</div>

手写笔:

fadeIn(duration=1s, delay=0s) {
    opacity: 1;
    transition: opacity duration ease delay;
    &.is-hidden { // <- yeah, this is wrong... but, any ideas? I want to apply transition both element and pseudo element.
        opacity: 0;
    }
}

.my-component {
    .text,
    &::before,
    &::after {
        fadeIn();
    }
    .text-2 {
        transition-delay: .3s;
    }
    &::before {
        content: 'foo';
        transition-delay: .5s;
    }
    &::after {
        content: 'bar';
        transition-delay: .7s;
    }
}

而且,如果淡入元素更加嵌套?

<div class="my-component js-hidden is-hidden">
    <div class="wrapper-1">
        <div class="wrapper-2">
            <p class="text text-1">Hello</p>
            <p class="text text-2">World</p>
        </div>
    </div>
</div>

我想同时应用元素和伪元素的过渡。但我不知道该怎么办...

谢谢。


最后...

谢谢安迪。

最后,我到达了下面的代码。 XD

JavaScript:

const show = entries => entries[0].isIntersecting ? entries[0].target.classList.remove('is-hidden') : null;
const observer = new IntersectionObserver(show, {threshold:0});
Array.from(document.querySelectorAll('.js-hidden')).forEach(element => observer.observe(element));

HTML:

<div class="my-component js-hidden is-hidden">
  <p class="text text-1">Hello</p>
  <p class="text text-2">World</p>
  <p class="text text-3">Hello</p>
  <p class="text text-4">World</p>
  <p class="text text-5">Hello</p>
  <p class="text text-6">World</p>
  <p class="text text-7">Hello</p>
  <p class="text text-8">World</p>
  <p class="text text-9">Hello</p>
</div>

手写笔:

fadeIn(target, duration=1s, delay=0s, property=all, easing=ease) {
    {target} {
        opacity: 1;
        transition: duration property easing delay;
    }
    &.is-hidden {
        {target} {
            opacity: 0;
        }
    }
}

.my-component {
    duration = .3s;
    delay = 1s;
    fadeIn('.text', duration:duration, delay:delay);
    fadeIn('&::before', duration:duration, delay:delay);
    fadeIn('&::after', duration:duration, delay:delay);

    interval = duration;
    amount = 9;
    for i in 2..amount {
        .text-{i} {
            transition-delay: (interval * (i - 2) + duration + delay)s;
        }
    }

    &::before {
        content: 'FOOOOOOOOOOOOOOO';
        transition-delay: (interval * ((amount + 1) - 2) + duration + delay)s;
    }
    &::after {
        content: 'BARRRRRRRRRRRRRR';
        transition-delay: (interval * ((amount + 2) - 2) + duration + delay)s;
    }
}

1 个答案:

答案 0 :(得分:1)

首先,您似乎正在寻找的是transition,而不是animation。我不是Stylus专家,但是非常了解IntersectionObserverCSS。我现在有基本的演示工作。

关于调整后的fadeIn功能的一些说明。

  • is-hidden是一开始就存在于DOM中的类,因此请在transition不存在的情况下提示fadeIn(duration=1s, delay=0s) { .text, &::before, &::after { opacity: 0; transition: 0.5s opacity ease; } &:not(.is-hidden) { .text, &::before, &::after { opacity: 1; } } }
  • 使用过渡中的委托模式-也就是说,父项中的更改会影响子项(不要为每个子项/伪元素监听类)
JavaScript

此外,由于某些错误,我无法使您的JavaScript正常工作,因此将其重写以适合演示。这是重写后的const components = document.querySelectorAll(".my-component"); const observer = new IntersectionObserver(components => { components.forEach(component => { if (component.intersectionRatio > 0) { component.target.classList.remove("is-hidden") } else { component.target.classList.add("is-hidden") } }) }); Array.from(document.querySelectorAll(".js-hidden")).forEach(element => observer.observe(element) );

ForkJoinPool

enter image description here

CodePen Demo