expericeBanner.vue 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div id="common-banner">
  3. <div class="common-banner-container">
  4. <div class="common-banner-img">
  5. <img :src="bannerSrc">
  6. </div>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'expericeBanner',
  13. props: {
  14. bannerSrc: {
  15. type: String,
  16. default: 'http://img.visney.cn/img/nuxtPc/experice/banner.png'
  17. }
  18. }
  19. }
  20. </script>
  21. <style>
  22. /*banner start*/
  23. div#common-banner{
  24. height: 700px;
  25. }
  26. #common-banner {
  27. position: relative;
  28. overflow: hidden;
  29. width: 100%;
  30. height: 600px;
  31. }
  32. .common-banner-container {
  33. position: relative;
  34. width: 1200px;
  35. height: 100%;
  36. margin: 0 auto;
  37. }
  38. .common-banner-img {
  39. position: absolute;
  40. top: 0;
  41. left: 50%;
  42. overflow: hidden;
  43. width: 1920px;
  44. height: 100%;
  45. margin-left: -960px;
  46. }
  47. /*banner start*/
  48. </style>