diff --git a/src/components/Footer.vue b/src/components/Footer.vue
index 24c98d5..be04366 100644
--- a/src/components/Footer.vue
+++ b/src/components/Footer.vue
@@ -10,9 +10,7 @@
@@ -125,24 +123,17 @@ export default {
.add-ctn {
@height: 27rem;
- @width: 40rem;
+ @width: 36rem;
height: @height;
width: @width;
- background: linear-gradient(to right, #59dcdf, #ff5f75);
- border-radius: 5rem;
+ border-radius: 6rem;
box-sizing: border-box;
padding: 0 2rem;
-
- .add-one {
- box-sizing: border-box;
- height: 100%;
- border-radius: 5rem;
- border: 2px solid white;
- background: black;
- display: flex;
- align-items: center;
- justify-content: center;
- }
+ border: 3rem solid white;
+ background: black;
+ display: flex;
+ align-items: center;
+ justify-content: center;
img {
width: 20rem;
diff --git a/src/components/Share.vue b/src/components/Share.vue
index be09d38..91f57df 100644
--- a/src/components/Share.vue
+++ b/src/components/Share.vue
@@ -340,10 +340,10 @@ export default {
margin-bottom: @space-width;
img {
- width: @icon-width - 2.6;
- height: @icon-width - 2.6;
+ width: 20rem;
padding: 13rem;
border-radius: 50%;
+ margin-bottom: 3rem;
background: @second-btn-color-tran;
//background: rgb(56, 58, 57);
}
diff --git a/src/components/slide/SlideAlbum.vue b/src/components/slide/SlideAlbum.vue
index d9a74b1..fa5f3ae 100644
--- a/src/components/slide/SlideAlbum.vue
+++ b/src/components/slide/SlideAlbum.vue
@@ -324,7 +324,7 @@ function progressBarTouchMEnd(e) {
}
function touchStart(e) {
- console.log('start', e.touches.length)
+ // console.log('start', e.touches.length)
if (e.touches.length === 1) {
slideTouchStart(e, wrapperEl.value, state)
} else {
@@ -338,10 +338,10 @@ function touchStart(e) {
}
function touchMove(e) {
- console.log('move', e.touches.length,)
+ // console.log('move', e.touches.length,)
let current1 = {x: e.touches[0].pageX, y: e.touches[0].pageY}
if (isZooming.value && e.touches.length === 1) {
- console.log('m1')
+ // console.log('m1')
state.status = 'pause'
Utils.$stopPropagation(e)
@@ -355,7 +355,7 @@ function touchMove(e) {
state.last.point1 = current1
} else {
if (e.touches.length === 1) {
- console.log('m2')
+ // console.log('m2')
slideTouchMove(e, wrapperEl.value, state, judgeValue, canNext,
() => {
state.status = 'pause'
@@ -366,7 +366,7 @@ function touchMove(e) {
}
})
} else {
- console.log('m3')
+ // console.log('m3')
state.operationStatus = SlideAlbumOperationStatus.Zooming
Utils.$stopPropagation(e)
state.status = 'pause'
diff --git a/src/components/slide/SlideUser.vue b/src/components/slide/SlideUser.vue
index 1ff0a54..301dc33 100644
--- a/src/components/slide/SlideUser.vue
+++ b/src/components/slide/SlideUser.vue
@@ -246,6 +246,7 @@ export default {