12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <div class="banner">
- <div class="mm"></div>
- <div class="banner-img">
- <img src="../assets/img/bgtop.jpg" />
- </div>
- <div class="banner-title">
- <p>{{title}}</p>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "Banner",
- props: {
- title: {
- type: String,
- default: ""
- },
- img: {
- type: String,
- default: "../assets/img/bgtop.jpg"
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .banner {
- width: 100%;
- height: 300px;
- display: flex;
- position: relative;
- overflow: hidden;
- background-color: #fff;
- .mm {
- position: absolute;
- width: 100%;
- height: 100%;
- padding: 10px;
- margin: -10px;
- filter: blur(10px);
- background-image: url(../assets/img/bgtop.jpg);
- background-position: center;
- background-size: 100%;
- }
- img {
- position: absolute;
- //width: 1240px;
- height: 100%;
- left: 50%;
- transform: translate(-50%, 0);
- }
- &-title {
- position: absolute;
- color: #fff;
- font-size: 45px;
- font-weight: 400;
- line-height: 300px;
- text-align: center;
- width: 100%;
- }
- }
- </style>
|