coffee/src/components/FirstPage.vue

379 lines
8.5 KiB
Vue
Raw Normal View History

2024-12-05 17:30:42 +08:00
<template>
<div class="index">
2024-12-06 17:31:51 +08:00
2024-12-05 17:30:42 +08:00
<div id="page">
<img src="../assets/page1.png" alt="" class="pic">
<!-- <img src="../assets/page1-1.png" alt="" class="pic">
<img src="../assets/page1-2.png" alt="" class="pic"> -->
<!-- <img src="../assets/page2-1.jpg" alt="" class="pic">
<img src="../assets/page2-2.jpg" alt="" class="pic"> -->
<img src="../assets/page2.jpg" alt="" class="pic">
</div>
2024-12-06 17:31:51 +08:00
<div class="page1 i1-1">
<img class="itPic" src="../assets/冷萃咖啡.jpg" alt="">
</div>
<div class="hidden"></div>
<div class="page1 i1-2"></div>
<div class="page1 i1-3"></div>
<div class="page1 i1-4"></div>
<div class="page1 i2-1"></div>
<div class="page1 i2-2"></div>
<div class="page1 i3-1"></div>
<div class="page1 i3-2"></div>
<div class="page1 i3-3"></div>
<div class="page1 i3-4"></div>
<div class="page1 i4-1"></div>
<div class="page1 i4-2"></div>
<div class="page1 i4-3"></div>
<div class="page1 i4-4"></div>
<div class="page1 i4-5"></div>
<div class="lt"></div>
<div class="lb"></div>
<div class="rt"></div>
<div class="rb"></div>
2024-12-05 17:30:42 +08:00
</div>
</template>
<script>
2024-12-06 17:31:51 +08:00
import { nextTick, onMounted } from 'vue'
2024-12-05 17:30:42 +08:00
import turn from '../utils/turn.js'
import $ from 'jquery'
export default {
components: {},
setup() {
2024-12-06 17:31:51 +08:00
let nextPage = 2
let nowPage = 1
let activeDiv = null
2024-12-05 17:30:42 +08:00
onMounted(() => {
2024-12-06 17:31:51 +08:00
let pageList = document.getElementsByClassName('page1')
let hidden = document.querySelector('.hidden')
for (let i = 0; i < pageList.length; i++) {
pageList[i].addEventListener('click', () => {
hidden.classList.add('hidding')
// 记录当前点击的div改变样式
activeDiv = pageList[i]
activeDiv.classList.add('parent')
activeDiv.children[0].classList.add('child')
document.querySelector('#page').addEventListener('click', () => {
console.log('click')
})
// pageList[i].style.transform = 'translate(-50%, -50%)'
// pageList[i].classList.add('center')
})
}
2024-12-05 17:30:42 +08:00
onTurn()
})
const onTurn = () => {
nextTick(() => {
$('#page').turn({
autoCenter: true,
2024-12-06 17:31:51 +08:00
height: 2048 / 2, //高度
width: 2732 / 2, //宽度
2024-12-05 17:30:42 +08:00
display: 'single', //单页显示/双页显示 single/double
elevation: 50,
duration: 1000, //翻页速度(毫秒), 默认600ms
gradients: true, //翻页时的阴影渐变, 默认true
// autoCenter: true, //自动居中, 默认false
acceleration: true, //硬件加速, 默认true, 如果是触摸设备设置为true
page: 1, //设置当前显示第几页
pages: 2, //总页数
2024-12-06 17:31:51 +08:00
turnCorners: 'bl,tr',
2024-12-05 17:30:42 +08:00
when: {
//监听事件
turning: function (e, page, view) {
2024-12-06 17:31:51 +08:00
console.log("turning", e, page, view)
2024-12-05 17:30:42 +08:00
// 翻页前触发
},
turned: function (e, page) {
2024-12-06 17:31:51 +08:00
console.log("turned", e, page)
document.querySelector('.index').removeEventListener('touchend', touchendHandle)
if (page === 2) {
nowPage = 2
document.querySelector('.rb').style.zIndex = 99
document.querySelector('.rt').style.zIndex = 99
document.querySelector('.lt').style.zIndex = 0
document.querySelector('.lb').style.zIndex = 0
} else {
nowPage = 1
document.querySelector('.rb').style.zIndex = 0
document.querySelector('.rt').style.zIndex = 0
document.querySelector('.lt').style.zIndex = 99
document.querySelector('.lb').style.zIndex = 99
}
2024-12-05 17:30:42 +08:00
// 翻页后触发
},
start: function (e, pageObj) {
2024-12-06 17:31:51 +08:00
console.log("start", e, pageObj)
nextPage = pageObj.next
document.querySelector('.index').addEventListener('touchend', touchendHandle)
2024-12-05 17:30:42 +08:00
// 开始翻页时触发
// $('#page').turn("next")
}
},
})
})
}
const clickHandle = () => {
console.log('onclick')
}
2024-12-06 17:31:51 +08:00
const touchendHandle = () => {
console.log('touchend')
if (nextPage === 2) {
$('#page').turn("next")
} else {
$('#page').turn("previous")
}
}
2024-12-05 17:30:42 +08:00
return {
2024-12-06 17:31:51 +08:00
touchendHandle,
2024-12-05 17:30:42 +08:00
clickHandle,
2024-12-06 17:31:51 +08:00
nextPage,
nowPage,
activeDiv,
2024-12-05 17:30:42 +08:00
onTurn
}
}
}
</script>
<style>
2024-12-06 17:31:51 +08:00
.lt,
.lb,
.rt,
.rb {
position: absolute;
width: 10%;
height: 10%;
background-color: red;
/* z-index: 99; */
}
.lt {
top: 0%;
left: 0%;
2024-12-05 17:30:42 +08:00
}
2024-12-06 17:31:51 +08:00
.lb {
bottom: 0%;
left: 0%;
}
.rt {
top: 0%;
right: 0%;
}
.rb {
bottom: 0%;
right: 0%;
}
.index {
width: 100%;
2024-12-05 17:30:42 +08:00
height: 100%;
2024-12-06 17:31:51 +08:00
/* overflow: hidden; */
2024-12-05 17:30:42 +08:00
}
#page {
2024-12-06 17:31:51 +08:00
/* position: absolute;
top: 0%;
left: 0%; */
2024-12-05 17:30:42 +08:00
width: 100%;
height: 100%;
/* background-image: url(../assets/page1.png); */
2024-12-06 17:31:51 +08:00
z-index: 6;
}
.hidden{
width: 100%;
height: 100%;
background-color: rgb(0, 0, 0);
position: absolute;
top: 0%;
left: 0%;
z-index: 0;
opacity: 0;
transition-property: all;
transition-duration: 0.5s;
transition-timing-function: linear;
transition-delay: 0s;
}
.hidding{
z-index: 50 !important;
opacity: 0.5 !important;
2024-12-05 17:30:42 +08:00
}
2024-12-06 17:31:51 +08:00
.pic {
width: 100%;
height: 100%;
}
.itPic {
width: 0px;
height: 0px;
2024-12-05 17:30:42 +08:00
position: absolute;
2024-12-06 17:31:51 +08:00
top: 0%;
left: 0%;
transition-property: all;
transition-duration: 0.5s;
transition-timing-function: linear;
transition-delay: 0s;
/* transform: translate(-50%, -50%); */
}
.parent {
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%);
width: 683px !important;
/* 683 */
height: 512px !important;
/* 512 */
z-index: 100 !important;
2024-12-05 17:30:42 +08:00
}
2024-12-06 17:31:51 +08:00
.child {
width: 683px !important;
height: 512px !important;
z-index: 100 !important;
}
.center {
position: absolute;
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%);
}
.page1 {
2024-12-05 17:30:42 +08:00
position: absolute;
2024-12-06 17:31:51 +08:00
border-style: solid;
border-width: 1px;
z-index: 10;
/* transform: translate(-50%, -50%); */
/* background-color: saddlebrown; */
transition-property: all;
transition-duration: 0.5s;
transition-timing-function: linear;
transition-delay: 0s;
}
.i1-1 {
width: 10%;
height: 15%;
top: 17%;
left: 5%;
}
.i1-2 {
width: 10%;
height: 15%;
top: 17%;
left: 23%;
}
.i1-3 {
width: 20%;
height: 15%;
top: 17%;
left: 42%;
}
.i1-4 {
width: 20%;
height: 15%;
top: 17%;
left: 70%;
}
.i2-1 {
width: 20%;
height: 14%;
top: 35%;
left: 36%;
}
.i2-2 {
width: 20%;
height: 14%;
top: 35%;
left: 70%;
}
.i3-1 {
width: 15%;
height: 23%;
top: 42%;
left: 2%;
}
.i3-2 {
width: 20%;
height: 18%;
top: 49%;
left: 22%;
}
.i3-3 {
width: 20%;
height: 18%;
top: 52%;
2024-12-05 17:30:42 +08:00
left: 50%;
}
2024-12-06 17:31:51 +08:00
.i3-4 {
width: 15%;
height: 18%;
top: 55%;
left: 79%;
}
.i4-1 {
width: 13%;
height: 15%;
top: 78%;
left: 2%;
}
.i4-2 {
width: 13%;
height: 15%;
top: 78%;
left: 19%;
}
.i4-3 {
width: 13%;
height: 15%;
top: 78%;
left: 35%;
}
.i4-4 {
width: 23%;
height: 15%;
top: 78%;
left: 52.5%;
}
.i4-5 {
width: 13%;
height: 15%;
top: 77%;
left: 80%;
2024-12-05 17:30:42 +08:00
}
</style>