JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q48833F
  • License MIT

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-acrylic) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    fork fork

    screenshot screenshot

    🌈 Demo

    🚀 Requirements

    • Chorme 76+
    • Vue 3+

    ⚙️ Installation

    npm i -S vue-acrylic

    🦄 Use in JS

    <h1 id="acrylic1">ACRYLIC</h1>
    <h1 id="acrylic2">ACRYLIC</h1>
    
    <script>
      import { useAcrylic } from 'vue-acrylic'
    
      const options1 = {
        bulr: 20,
        noiseOpacity: 1,
        noiseSize: 50
      }
    
      useAcrylic(document.getElementById('acrylic1'))
      useAcrylic(document.getElementById('acrylic2'), options1)
    </script>

    🦄 Use in Vue

    import { createApp } from 'vue'
    import Acrylic from 'vue-acrylic'
    import App from './App.vue'
    
    createApp(App).use(Acrylic).mount('#app')
    <script setup>
      const opt = {
        bulr: 20,
        noiseOpacity: 1,
        noiseSize: 50
      }
    </script>
    
    <template>
      <div v-acrylic>Acrylic</div>
      <div v-acrylic="opt">Acrylic</div>
    </template>

    📄 Props

    name type default Description
    blur MaybeRef 30 模糊大小
    color MaybeRef #e6e6e6 颜色/色调覆盖层
    opacity MaybeRef 0.5 色调层不透明度
    brightness MaybeRef 1 控制可从背景穿过 Acrylic 图面的亮度
    saturate MaybeRef 1.6 控制可从背景穿过 Acrylic 图面的饱和度
    noiseOpacity MaybeRef 0.75 噪点不透明度
    noiseSize MaybeRef 30 噪点大小
    disabled MaybeRef false 是否禁用 Acrylic
    fallbackColor MaybeRef #e6e6e6e6 在禁用状态中替换 Acrylic 的纯色

    🌈 Inspired by Fluent Design's Acrylic Material

    ⭐️ Show Your Support

    Please give a ⭐️ if this project helped you!