diff --git a/guess.html b/guess.html
index e3c82bd..d7b09c6 100644
--- a/guess.html
+++ b/guess.html
@@ -94,7 +94,7 @@
- 恭喜答对!马上进入下一题…
+ 太棒了,连对三题,恭喜通关!
diff --git a/static/css/index.css b/static/css/index.css
index fa1edf8..85c9986 100644
--- a/static/css/index.css
+++ b/static/css/index.css
@@ -400,10 +400,14 @@
margin: 0 auto;
cursor: pointer;
}
+.content .works .mv-box .item .media:hover .img {
+ transform: scale(1.05);
+}
.content .works .mv-box .item .media .img {
width: 100%;
height: 100%;
border-radius: 10px;
+ transition: all 0.3s ease-in-out;
}
.content .works .mv-box .item .media .play {
position: absolute;
diff --git a/static/css/index.less b/static/css/index.less
index dc90d70..81cddf7 100644
--- a/static/css/index.less
+++ b/static/css/index.less
@@ -461,10 +461,16 @@
margin: 0 auto;
cursor: pointer;
+ &:hover .img {
+ transform: scale(1.05);
+ }
+
.img {
width: 100%;
height: 100%;
border-radius: 10px;
+ transition: all 0.3s ease-in-out;
+
}
.play {