|
@@ -7,7 +7,8 @@
|
|
<div class="client-container">
|
|
<div class="client-container">
|
|
<courseCardTitle :title="project.title" class="classification-title"></courseCardTitle>
|
|
<courseCardTitle :title="project.title" class="classification-title"></courseCardTitle>
|
|
<ul class="classification-items">
|
|
<ul class="classification-items">
|
|
- <li class="classification-item" :class="{active:item.type === activeItem }" v-for="item in project.data" @click="changeItem(item)">{{ item.title }}</li>
|
|
|
|
|
|
+ <li class="classification-item" :class="{active:item.type === activeItem }" v-for="item in project.data" @click="changeItem(item)">
|
|
|
|
+ <p>{{ item.title }}</p></li>
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -229,6 +230,33 @@ export default {
|
|
height: 737px;
|
|
height: 737px;
|
|
padding-top: 135px;
|
|
padding-top: 135px;
|
|
|
|
|
|
|
|
+
|
|
|
|
+ li:nth-child(1){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/kc-img1.png");
|
|
|
|
+ }
|
|
|
|
+ li.active:nth-child(1){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/kc-img1-active.png");
|
|
|
|
+ }
|
|
|
|
+ li:nth-child(2){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/kc-img2.png");
|
|
|
|
+ }
|
|
|
|
+ li.active:nth-child(2){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/kc-img2-active.png");
|
|
|
|
+ }
|
|
|
|
+ li:nth-child(3){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/gd-img3.png");
|
|
|
|
+ }
|
|
|
|
+ li.active:nth-child(3){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/gd-img3-active.png");
|
|
|
|
+ }
|
|
|
|
+ li:nth-child(4){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/gd-img4.png");
|
|
|
|
+ }
|
|
|
|
+ li.active:nth-child(4){
|
|
|
|
+ background-image: url("~static/images/client/course/animationCard/gd-img4-active.png");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
.classification-title {
|
|
.classification-title {
|
|
margin-bottom: 144px;
|
|
margin-bottom: 144px;
|
|
}
|
|
}
|
|
@@ -241,7 +269,6 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.classification-item {
|
|
.classification-item {
|
|
- background-color: #cccccc;
|
|
|
|
width: 250px;
|
|
width: 250px;
|
|
height: 280px;
|
|
height: 280px;
|
|
}
|
|
}
|