vue-hotspot
vue-hotspot copied to clipboard
đ vue-hotspot is a Hotspot component for Vue.js.
English | įŽäŊä¸æ
Introduction
Vue-Hotspot is an image hotspot component for Vue.js.
Installation
npm (Recommended)
$ npm install vue-hotspot --save
yarn
$ yarn add vue-hotspot
Usage
ES Modules with npm (Recommended)
import Vue from 'vue'
import VueHotspot from 'vue-hotspot' // refers to components/VueHotspot.vue in webpack
Using the component
<template>
<v-hotspot
:init-options="hotspotConfig"
@save-data="saveData"
@after-delete="afterDelete" />
</template>
<script>
import Vue from 'vue'
import VueHotspot from 'vue-hotspot'
export default {
components: {
'v-hotspot': VueHotspot
},
data () {
return {
hotspotConfig: {
image: 'your-image-url.png',
editable: true,
interactivity: 'hover',
data: [
{ Message: 'A prepopulated hotspot', Title: 'Vue Hotspot 1', x: 33.3, y: 58.33 },
{ Message: 'Another prepopulated hotspot', Title: 'Vue Hotspot 2', x: 53.3, y: 78.3 }
],
hotspotColor: '#85ce61',
messageBoxColor: '#409eff',
textColor: '#333',
opacity: 0.9
}
}
},
methods: {
saveData (data) {
// Do something with the list of hotspots
console.log(data)
},
afterDelete () {
// Do something after delete
console.log('Do something after delete ...')
}
}
}
</script>
Live Demo
You can see more examples here.
Project Structure
. âââ CHANGELOG.md âââ LICENSE âââ README.md âââ README.zh-CN.md âââ babel.config.js âââ dist // folder, build files from src/components âââ docs // folder, build files from src/demo âââ jest.config.js // jest config âââ package-lock.json âââ package.json âââ public // folder, demo public files â  âââ favicon.ico â  âââ index.html âââ publish.sh // publish shell script âââ rollup.config.js // rollup config âââ src // folder, src folder â  âââ components // folder, main folder â  â  âââ VueHotspot.vue // entry file â  â  âââ module // folder, module folder â  â  â  âââ ControlBox.vue â  â  â  âââ DataPoint.vue â  â  âââ utils // folder, utils folder â  â  âââ common.js â  âââ demo // folder, demo files source folder â  âââ Demo.vue â  âââ assets â  â  âââ logo.png â  â  âââ unimelb.jpg â  âââ components â  â  âââ ShowCode.vue â  â  âââ Toggle.vue â  âââ main.js âââ tests // folder, unit test folder â  âââ unit â  âââ ControlBox.spec.js â  âââ DataPoint.spec.js â  âââ common.spec.js âââ vue.config.js // vue config file
Project Structure
. âââ CHANGELOG.md âââ LICENSE âââ README.md âââ README.zh-CN.md âââ babel.config.js âââ dist // folder, build files from src/components âââ docs // folder, build files from src/demo âââ jest.config.js // jest config âââ package-lock.json âââ package.json âââ public // folder, demo public files â  âââ favicon.ico â  âââ index.html âââ publish.sh // publish shell script âââ rollup.config.js // rollup config âââ src // folder, src folder â  âââ components // folder, main folder â  â  âââ VueHotspot.vue // entry file â  â  âââ module // folder, module folder â  â  â  âââ ControlBox.vue â  â  â  âââ DataPoint.vue â  â  âââ utils // folder, utils folder â  â  âââ common.js â  âââ demo // folder, demo files source folder â  âââ Demo.vue â  âââ assets â  â  âââ logo.png â  â  âââ unimelb.jpg â  âââ components â  â  âââ ShowCode.vue â  â  âââ Toggle.vue â  âââ main.js âââ tests // folder, unit test folder â  âââ unit â  âââ ControlBox.spec.js â  âââ DataPoint.spec.js â  âââ common.spec.js âââ vue.config.js // vue config file
Config Options
options | description | required | default |
---|---|---|---|
image | Default image placeholder | true | an empty image with text 'Oops! image not found...' |
data | Object to hold the hotspot data points. Data structure: [ {Message: 'String', Title: 'String, x: Float, y: Float'} ] |
false | [] |
editable | Specify editable in which the plugin is to be used.true : Allows to create hotspots from UI.false : Display hotspots from data object |
false | true |
interactivity | Event on which the hotspot data point will show up. allowed values: click , hover , none |
false | hover |
hotspotColor | background color for hotspot dots | false | 'rgb(66, 184, 131)' |
messageBoxColor | background color for hotspot message boxes | false | 'rgb(255, 255, 255)' |
textColor | background color for hotspot text | false | 'rgb(53, 73, 94)' |
opacity | opacity for hotspots | false | 0.8 |
overlayText | text for overlay in edit mode | false | 'Please Click The Image To Add Hotspots.' |
Local development
$ npm i
$ npm run serve
Open http://localhost:8080/
to see the demo.
License
Vue-hotspot component is delivered under the MIT License