1.0.10 • Published 5 months ago

broadcast-grid v1.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Broadcast grid

Customizable and responsive video conferencing grid. If you need to make your own video conference system, you can use it!

Grid demo

Install

npm

npm install broadcast-grid

yarn

yarn add broadcast-grid

Using

JavaScript

/**
* example using
*/
import 'broadcast-grid/dist/broadcast-grid.css';
import {

	BcGrid,  // grid
	BcCell,  // grid cell
	BcLayer, // layer of cell layout
	BcVideo, // video component
	BcAvatar // avatar

} from 'broadcast-grid';

HTML

<!-- Simple using -->
  <div style="width: 100vw; height: 100vh; border: 2px solid red; box-sizing: border-box">

    <bc-grid gap="10">

      <bc-cell>
      
        <bc-layer style="display: flex; justify-content: center; align-items: center">

          <bc-avatar

            name="Dmitry Volgapkin"
            color="#920381"

          ></bc-avatar>

        </bc-layer>
      
      </bc-cell>

      <bc-cell>
      
        <bc-layer style="display: flex; justify-content: center; align-items: center">

          <bc-avatar

            name="Lara Croft"
            color="#920381"

          ></bc-avatar>

        </bc-layer>
      
      </bc-cell>

    </bc-grid>

  </div>

Components

componentcaption
BcGridResponsive video conference grid
BcCellGrid cell
BcAvatarPeer avatar
BcLayerWorking layer on cell
BcVideoVideo
BcFrameActive frame
1.0.10

5 months ago

1.0.9

5 months ago

1.0.8

5 months ago

1.0.7

5 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.0

6 months ago