wuZhongtian / wc-flow-layout

High performance flow-layout written using web components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wc-waterfall

The wc-waterfall is a high performance waterfall component written using web-component

It can support running in various frameworks, such as React Vue SolidJs

image

🌈 Demo

βš™οΈ Installation

  • npm

npm i wc-waterfall
  • scripts

<script src="https://cdn.jsdelivr.net/npm/wc-waterfall/dist/index.iife.js"></script>

πŸ¦„ Example

πŸš€ Use in VanillaJS

import 'wc-waterfall'
<wc-waterfall gap="10" cols="3">
  <div>01</div>
  <div>02</div>
  <div>03</div>
  <div>04</div>
  <div>05</div>
  <div>06</div>
</wc-waterfall>

πŸš€ Use in React

// App.tsx
import 'wc-waterfall'

export default function MyApp() {
  return (
    <wc-waterfall gap={10} cols={3}>
      <div>01</div>
      <div>02</div>
      <div>03</div>
      <div>04</div>
      <div>05</div>
      <div>06</div>
    </wc-waterfall>
  )
}

πŸš€ Use in Vue

// main.ts
import 'wc-waterfall'
<!-- App.vue -->
<template>
  <wc-waterfall :gap="10" :cols="3">
    <div>01</div>
    <div>02</div>
    <div>03</div>
    <div>04</div>
    <div>05</div>
    <div>06</div>
  </wc-waterfall>
</template>
// vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
  plugins: [
    vue({
      template: {
        compilerOptions: { isCustomElement: (tag) => tag.startsWith('wc-') }
      },
    })
  ],
})

πŸš€ Use in SSR

- import 'wc-waterfall'
+ if (typeof document != 'undefined') import('wc-waterfall')

πŸ“„ Props

Name Type Default Description
cols number 2 Number of columns
gap number 4 Interval between cells

⭐️ Show Your Support

Please give a ⭐️ if this project helped you!

πŸ‘ Contributing

If you have any questions or requests or want to contribute, please write the issue or give me a Pull Request freely.

About

High performance flow-layout written using web components

License:MIT License


Languages

Language:TypeScript 46.5%Language:HTML 28.1%Language:CSS 15.5%Language:JavaScript 9.8%