Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
465 views
in Technique[技术] by (71.8m points)

javascript - 有没有if块的执行苗条过渡的方法吗?(Is there a way to perform svelte transition without a if block?)

  <button on:click={() => (visible = !visible)}>Toggle</button>

  {#if !visible}
    <QuizArea
      transition:slide
      on:score={e => {
        playerScore = e.detail.score;
      }} />
  {/if}

My question is can I use the transition without toggling the visibility?

(我的问题是我可以在不切换可见性的情况下使用过渡吗?)

  ask by Manan Joshi translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

the transtion directive or intro/outro is for transition when your component is created and added into the DOM, or destroyed and removed from the DOM.

(transtion指令片头/片尾是过渡创建时的成分,并添加到DOM,或销毁,并从DOM中删除。)

The only way to add/remove a component with Svelte is to use logic blocks like {#if} to add/remove a component based on a logic.

(使用Svelte添加/删除组件的唯一方法是使用{#if}类的逻辑块根据逻辑添加/删除组件。)

If you want to keep the component on the DOM, but still add animation, like fading the component in and out, you can consider using CSS transition or CSS animation by adding/removing CSS class, something like this .

(如果您希望将组件保留在DOM上,但仍要添加动画(例如使组件淡入和淡出),则可以考虑通过添加/删除CSS类来使用CSS过渡CSS动画诸如此类 。)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...