欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

能& # 39;為HTML用戶界面鏈接一個本地CSS文件.Figma插件開發

林子帆1年前9瀏覽0評論

我想使用這個UI庫,它是在Figma的插件開發官方教程中介紹的。

https://github.com/thomas-lowry/figma-plugin-ds

我和NPM一起安裝了這個庫。 但是我鏈接不了CSS文件。

這是我的html代碼。

<link rel="stylesheet" href="node_modules/figma-plugin-ds/dist/figma-plugin-ds.css">

href的路徑沒有錯,因為VS代碼可以跟隨鏈接。 我試著把link標簽放在head標簽里,但是沒用。

此外,如果我像這樣對CSS使用CDN,它會工作。

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/gh/thomas-lowry/figma-plugin-ds/dist/figma-plugin-ds.css"
/>

但是我不想用這個,因為風格調整的延遲。它使用戶界面閃爍。

我做錯了什么?我想在我的本地鏈接這個CSS文件! 謝謝你。

供你參考, Figma插件在iframe中呈現我的html文件。 這是渲染后的結構

(other tags for whole figma UI)
<iframe ...>
    <html>
        <head>
            <script></script>
            <style></style>        <= Figma generates this part automatically
            <link ...></link>      <= where my custom link tag be
        </head>
        <body>
             (my plugin UI is here)

我嘗試過的:

我試圖將鏈接標簽放入和放出head標簽。

我試圖鏈接node_modules文件夾之外的另一個CSS文件。