尝试导入过渡时,带有雪包的 Svelte 会给出“未实现:动画”

Posted

技术标签:

【中文标题】尝试导入过渡时,带有雪包的 Svelte 会给出“未实现:动画”【英文标题】:Svelte with snowpack gives "Not Implemented: Animation" when trying to import transitions 【发布时间】:2021-05-09 09:18:00 【问题描述】:

通常,我可以像这样在 svelte 中导入 flip 或其他动画:

import  flip  from "svelte/animate";

但是,我不确定为什么在使用 svelte 的雪包中会出现以下错误:

Build Error: @snowpack/plugin-svelte
Error: Not implemented: Animation

Source
/Users/duane/Braid/ribbon/client/src/Posts/PostsPage.svelte
Error: Not implemented: Animation
    at /Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27126:28
    at Array.forEach (<anonymous>)
    at new InlineComponent$1 (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27087:26)
    at /Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27358:23
    at Array.map (<anonymous>)
    at map_children (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27353:22)
    at new IfBlock$1 (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27063:26)
    at /Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27358:23
    at Array.map (<anonymous>)
    at map_children (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27353:22)
    at new Fragment (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27410:26)
    at new Component (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:27547:26)
    at Object.compile (/Users/duane/Braid/ribbon/node_modules/svelte/compiler.js:28753:24)
    at Object.load (/Users/duane/Braid/ribbon/node_modules/@snowpack/plugin-svelte/plugin.js:120:31)
    at async runPipelineLoadStep (/Users/duane/Braid/ribbon/node_modules/snowpack/lib/index.js:74471:28)
    at async Object.buildFile (/Users/duane/Braid/ribbon/node_modules/snowpack/lib/index.js:74638:24)

我错过了什么吗?

【问题讨论】:

【参考方案1】:

事实证明这与积雪无关。

当您尝试在组件(例如&lt;MySpecialButton /&gt;)上添加“animate:flip”或“transition:slide”(例如)时,会出现“未实现:动画”错误。 animate:transition: 属性只能用于 DOM 元素,如 &lt;div /&gt; 等。

【讨论】:

以上是关于尝试导入过渡时,带有雪包的 Svelte 会给出“未实现:动画”的主要内容,如果未能解决你的问题,请参考以下文章

尝试让 nedb 导入 Svelte 组件

Svelte:响应式数据更改的过渡

在带有 Svelte 的每个块中使用定义的变量

如何在运行时将编译的 svelte-components/-apps 导入 svelte-app

Svelte - 路由,当我尝试输入任何网址时,我只会收到“未找到网页”错误

在使用带有 sveltekit 的 svelte-forms 时调用外部组件初始化的函数