Vue全家桶+Node.js全栈开发Xmall商城 - 1.5 Xmall商城首页轮播图实现

element是一个很不错的网站,上面有很多插件,可供我们复制相关代码使用,我们只需要安装element插件,并且在使用的时候,导入相关的组件就可以了。

Xmall商城的轮播图就采用了这种方法。

下面是相关的代码:

views/Home/index.vue代码:

<template>
    <div class="home">
        <!-- 轮播图 -->
        <div class="banner">
            <!-- element官网上other中的走马灯相关代码,即为轮播图。 1.5 Xmall商城首页轮播图实现-->
            <el-carousel indicator-position="outside" height="480px">
                <el-carousel-item v-for="(item,i) in banner" :key="i">
                <img v-if="item.picUrl" class="img1" :src="item.picUrl" alt>
                <img v-if="item.picUrl2" class="img2 a" :src="item.picUrl2" alt>
                <img v-if="item.picUrl3" class="img3 b" :src="item.picUrl3" alt>
                </el-carousel-item>
            </el-carousel>
        </div>
        <div v-for="(item,index) in homeList" :key="index">
        <div class="activity-panel" v-if="item.type===1">
            <!-- 仅仅要活动版块的内容 -->
            <el-row>
            <el-col class="content" :span="8" v-for="o in item.panelContents" :key="o.id">
                <el-card :body-style="{ padding: '0px' }">
                <img :src="o.picUrl" class="i">
                <a href="#" class="cover-link"></a>
                </el-card>
            </el-col>
            </el-row>
        </div>
        <!-- 商品title -->
        <section class="w mt30 clearfix" v-if="item.type===2">
            <m-shelf :title="item.name">
            <div slot="content" class="hot">
                <mall-goods v-for="(o,i) in item.panelContents" :key="i" :goods="o"></mall-goods>
            </div>
            </m-shelf>
        </section>
        <section class="w mt30 clearfix" v-if="item.type===3">
            <m-shelf :title="item.name">
            <div slot="content" class="floors">
                <div
                class="imgbanner"
                v-for="(o,j) in item.panelContents"
                :key="j"
                v-if="o.type===2 || o.type===3"
                >
                <img :src="o.picUrl" alt="">
                </div>
                <mall-goods :goods='o' v-for='(o,i) in item.panelContents' :key='i' v-if='o.type===0'></mall-goods>
            </div>
            </m-shelf>
        </section>
        </div>
    </div>
</template>

<script>
import MShelf from "@/components/Shelf";
import MallGoods from "@/components/MallGoods";
// 主要逻辑
export default {
    data() {
        return {
        banner: [],
        homeList: []
        };
    },
    components: {
        MShelf,
        MallGoods
    },
    async created() {
        try {
        const res = await this.$http.get("/api/goods/home");
        let data = res.data;
        if (data.code === 200) {
            let result = data.result;
            this.homeList = result;
            // 获取轮播图的数据
            let item = result.find(item => item.type === 0);
            this.banner = item.panelContents;
        }
        } catch (error) {
        console.log(error.message);
        }
    }
};
</script>

<style lang="scss" scoped>
.home {
    display: flex;
    flex-direction: column;
}

.no-info {
    padding: 100px 0;
    text-align: center;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    .no-data {
        align-self: center;
    }
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s;
}
.fade-enter,
.fade-leave-to {
    opacity: 0;
}

.page {
    position: absolute;
    width: 100%;
    top: 470px;
    z-index: 30;
    .dots {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        .dot-active {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-color: whitesmoke;
        border-radius: 8px;
        margin-right: 10px;
        cursor: pointer;
        }
        .dot {
        opacity: 0.2;
        }
    }
}

.activity-panel {
    width: 1220px;
    margin: 0 auto;
    .box {
        overflow: hidden;
        position: relative;
        z-index: 0;
        margin-top: 25px;
        box-sizing: border-box;
        border: 1px solid rgba(0, 0, 0, 0.14);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 3px 8px -6px rgba(0, 0, 0, 0.1);
    }
    .content {
        float: left;
        position: relative;
        box-sizing: border-box;
        width: 25%;
        height: 200px;
        text-align: center;
    }
    .content ::before {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        box-sizing: border-box;
        border-left: 1px solid #f2f2f2;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        height: 100%;
        content: "";
        pointer-events: none;
    }
    .i {
        width: 305px;
        height: 200px;
    }
    .cover-link {
        cursor: pointer;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 4;
        background: url(data:image/gif;base64,R0lGODlhAQABAIAAAP///yH5BAEHAAEALAAAAAABAAEAAAICTAEAOw==)
        repeat;
    }
    a {
        color: #5079d9;
        cursor: pointer;
        transition: all 0.15s ease-out;
        text-decoration: none;
    }
    a:hover {
        box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.08);
        transition: all 0.15s ease;
    }
    }

    .banner,
    .banner span,
    .banner div {
    font-family: "Microsoft YaHei";
    transition: all 0.3s;
    transition-timing-function: linear;
}

.banner {
    cursor: pointer;
    perspective: 3000px;
    position: relative;
    z-index: 19;
    margin: 0 auto 40px;
    width: 1220px;
}

.bg {
    position: relative;
    width: 1220px;
    height: 500px;
    margin: 20px auto;
    background-size: 100% 100%;
    border-radius: 10px;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    transform: rotateY(0deg) rotateX(0deg);
    & div {
        position: relative;
        height: 100%;
        width: 100%;
    }
}

.img1 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 10px;
}

.img2 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 5px;
    left: 0;
    background-size: 95% 100%;
    border-radius: 10px;
}

.img3 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 10px;
}

.a {
    z-index: 20;
    transform: translateZ(40px);
}

.b {
    z-index: 20;
    transform: translateZ(30px);
}

.c {
    transform: translateZ(0px);
}

.sk_item {
    width: 170px;
    height: 225px;
    padding: 0 14px 0 15px;
    > div {
        width: 100%;
    }
    a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
        &:hover {
        transform: translateY(-5px);
        }
    }
    img {
        width: 130px;
        height: 130px;
        margin: 17px 0;
    }
    .sk_item_name {
        color: #999;
        display: block;
        max-width: 100%;
        _width: 100%;
        overflow: hidden;
        font-size: 12px;
        text-align: left;
        height: 32px;
        line-height: 16px;
        word-wrap: break-word;
        word-break: break-all;
    }
    .sk_item_price {
        padding: 3px 0;
        height: 25px;
    }
    .price_new {
        font-size: 18px;
        font-weight: 700;
        margin-right: 8px;
        color: #f10214;
    }
    .price_origin {
        color: #999;
        font-size: 12px;
    }
}

.box {
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin-top: 29px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 8px -6px rgba(0, 0, 0, 0.1);
}

ul.box {
    display: flex;
    li {
        flex: 1;
        img {
        display: block;
        width: 305px;
        height: 200px;
        }
    }
}

.mt30 {
    margin-top: 30px;
}

.hot {
    display: flex;
    > div {
        flex: 1;
        width: 25%;
    }
}

.floors {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    .imgbanner {
        width: 50%;
        height: 430px;
        .cover-link {
        cursor: pointer;
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 50%;
        height: 430px;
        z-index: 4;
        background: url(data:image/gif;base64,R0lGODlhAQABAIAAAP///yH5BAEHAAEALAAAAAABAAEAAAICTAEAOw==)
            repeat;
        }
        .cover-link:hover {
        box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.08);
        transition: all 0.15s ease;
        }
    }
    img {
        display: block;
        width: 100%;
        height: 100%;
    }
}
</style>

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值