0.2.7 • Published 5 years ago

@djanoskova/vue-image-blur v0.2.7

Weekly downloads
1
License
-
Repository
github
Last release
5 years ago

@djanoskova/vue-image-blur

Demo

See the working example at https://vue-image-blur.herokuapp.com/ and the demo code repository at https://github.com/DJanoskova/-djanoskova-vue-image-blur-demo

Component usage

<template>
 <ImageBlur
    width="390"
    height="500"
    :image="myImage.large"
    :thumb="myImage.thumb"/>
</template>

Either specify the width and height as props or style the .image-blur class to have fixed dimensions.

<script>
import { ImageBlur } from '@djanoskova/vue-image-blur'
import '@djanoskova/vue-image-blur/public/css/imageBlur.css'

export default {
  data () {
    return {
      myImage: {
        large: 'http://mysite.com/image_large.jpg',
        thumb: 'http://mysite.com/image_thumb.jpg'
      }
    }
  },
  components: {
    ImageBlur
  }
}
</script>

Check the component source for more information.

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago