123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <view class="start-page">
- <view class="start-content">
- <swiper
- class="custom-swiper"
- autoplay
- circular
- :current="currentIndex"
- @change="onSwiperChange"
- >
- <swiper-item v-for="(item, index) in 3" :key="index">
- <view class="content">
- <image
- src="../../../static/images/jobApplicant/wumen.svg"
- class="wumen-img"
- mode="scaleToFill"
- />
- <view class="txt-box">
- <view class="start-logo">
- <image
- src="../../../static/images/jobApplicant/logo-column.svg"
- mode="scaleToFill"
- />
- </view>
- <view class="start-title">让你的逐梦之路更简单</view>
- <view class="start-desc"
- >星光不负逐梦人 <br />
- 愿你在亿职赞找到心仪的工作</view
- >
- </view>
- </view></swiper-item
- >
- </swiper>
- <!-- 自定义指示器 -->
- <view class="custom-indicator">
- <view
- v-for="(item, index) in 3"
- :key="index"
- class="indicator-dot"
- :class="{ active: currentIndex === index }"
- @click="switchBanner(index)"
- ></view>
- </view>
- </view>
- <view class="start-btn" @click="goLogin">开启探索之旅</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- currentIndex: 0,
- };
- },
- methods: {
- // 轮播图切换事件
- onSwiperChange(e) {
- this.currentIndex = e.detail.current;
- },
- // 切换轮播图
- switchBanner(index) {
- this.currentIndex = index;
- },
- // 点击轮播图
- handleBannerClick(item) {
- if (item.link) {
- uni.navigateTo({
- url: item.link,
- });
- }
- },
- goLogin() {
- // uni.navigateTo({
- // url: "/pages/my/jobApplicant/login",
- // });
- uni.navigateTo({
- url: "/pages/public/login",
- });
- },
- // 暂停自动播放
- pauseAutoplay() {
- this.autoplay = false;
- },
- // 开始自动播放
- startAutoplay() {
- this.autoplay = true;
- },
- },
- onShow() {
- // 页面显示时恢复自动播放
- this.startAutoplay();
- },
- onHide() {
- // 页面隐藏时暂停自动播放
- this.pauseAutoplay();
- },
- };
- </script>
- <style lang="scss" scoped>
- .start-page {
- background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .start-content {
- padding: 28rpx;
- box-sizing: border-box;
- padding-top: 5vh;
- box-sizing: border-box;
- flex: 1;
- .content {
- position: relative;
- margin-top: 780rpx;
- .wumen-img {
- width: 614rpx;
- height: 780rpx;
- position: absolute;
- left: 0;
- right: 0;
- top: -760rpx;
- margin: auto;
- z-index: 1;
- }
- .txt-box {
- position: relative;
- background-color: #fff;
- border-radius: 64rpx;
- padding: 64rpx 48rpx;
- box-sizing: border-box;
- z-index: 20;
- .start-logo {
- margin: auto;
- width: 240rpx;
- height: 66rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .start-title {
- color: #016bf6;
- font-family: DM Sans;
- font-size: 48rpx;
- font-weight: 700;
- line-height: 32px;
- letter-spacing: 0%;
- text-align: center;
- padding: 48rpx 0;
- box-sizing: border-box;
- }
- .start-desc {
- color: #9ca4ab;
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 44rpx;
- letter-spacing: 0%;
- text-align: center;
- }
- }
- }
- }
- .start-btn {
- flex-shrink: 0;
- color: #016bf6;
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 400;
- line-height: 48rpx;
- letter-spacing: 0%;
- text-align: center;
- background-color: #fff;
- border-radius: 100rpx;
- padding: 16rpx 32rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 52rpx;
- }
- .custom-swiper {
- height: 100%;
- }
- .custom-indicator {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: -60rpx;
- gap: 16rpx;
- position: relative;
- z-index: 3;
- .indicator-dot {
- width: 20rpx;
- height: 20rpx;
- border-radius: 50%;
- background: #fff;
- transition: all 0.3s ease;
- &.active {
- width: 64rpx;
- border-radius: 20rpx;
- background: #fff;
- }
- }
- }
- }
- </style>
|