Guest User

Untitled

a guest
Sep 23rd, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <template>
  2. <div id="hero" v-bind:style="{ backgroundImage: 'url(' + img + ')' }" class="bg-img">
  3. </div>
  4. </template>
  5. <script>
  6. import image from '@/assets/images/hands.jpeg'
  7. import $ from 'jquery'
  8.  
  9. export default {
  10. data(){
  11. return{
  12. img:image
  13. }
  14. }
  15. }
  16. </script>
  17.  
  18. <style scoped>
  19. #hero{
  20. width: 100%;
  21. height: 500px;
  22. }
  23.  
  24. .bg-img {
  25. background-position: center center;
  26. background-repeat: no-repeat;
  27. background-attachment: fixed;
  28. background-size: cover;
  29. background-color: #999;
  30. }
  31.  
  32. </style>
Add Comment
Please, Sign In to add comment