scrollable-image-ui

What is this
An interface used for generating scrollable image embedded code.
How to use this
Install
yarn add @twreporter/scrollable-image-ui
or you can use npm:
npm install --save @twreporter/scrollable-image-ui
Example
- Serve the distribution files by Google Cloud Function
const express = require('express')
const path = require('path')
const app = express()
app.use(
express.static(
path.join(__dirname, 'node_modules/@twreporter/scrollable-image-ui/dist')
)
)
app.get('/', (req, res) => {
res.status(200).sendFile(path.join(__dirname, '/index.html'))
})
How to develop this
make dev
How to build this
make build