style: 评委
This commit is contained in:
BIN
src/assets/images/award/anniewong.png
Normal file
BIN
src/assets/images/award/anniewong.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
BIN
src/assets/images/award/rosiexia.png
Normal file
BIN
src/assets/images/award/rosiexia.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 241 KiB |
BIN
src/assets/images/award/xavenmak.png
Normal file
BIN
src/assets/images/award/xavenmak.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 160 KiB |
@@ -80,12 +80,19 @@ export default {
|
||||
panelOfJudges: 'Panel of Judges',
|
||||
expertise: 'Expertise',
|
||||
judgesHat: {
|
||||
jae: 'Code-Create Branch Director\nBesfxxk creative director\n(Korea)',
|
||||
diego: 'Co-founder & Chief Father\nOfficer of OnTheList\n(Hong Kong)',
|
||||
gregory: 'Senior Designer at\nGabriela Hearst (Italy)',
|
||||
vincenzo: 'Chief Editor of SCMP Style\n(Hong Kong)',
|
||||
tim: 'Group Fashion Director of\n Modern Media Group\n(Shanghai)',
|
||||
desmond: 'Chief Editor of Vogue\n(Singapore)'
|
||||
jae: 'Director, Code-Create Korea Creative Director, Besfxxk Former Stylistic Consultant Max Mara & Corelate',
|
||||
jaeCountry: '(Korea)',
|
||||
rosie: 'Associate Merchandising Director, Galeries Lafayette China',
|
||||
rosieCountry: '(Mainland China)',
|
||||
gregory:
|
||||
'Senior Designer, Gabriela Hearst Former Menswear Head DesignerBottega Veneta & Burberry',
|
||||
gregoryCountry: '(Italy)',
|
||||
annie: 'Chief Operating Officer,\nChow Tai Fook Jewellery Group',
|
||||
annieCountry: '(Hong Kong, China)',
|
||||
xaven: 'General Manager & Editorial Director,\nMadame Figaro Hong Kong',
|
||||
xavenCountry: '(Hong Kong, China)',
|
||||
desmond: 'Editor-in-Chief, Vogue Singapore',
|
||||
desmondCountry: '(Singapore)'
|
||||
},
|
||||
tbd: 'To be determined',
|
||||
awardPrizes: 'Award & Prizes',
|
||||
|
||||
@@ -74,12 +74,18 @@ export default {
|
||||
panelOfJudges: '终审评委团',
|
||||
expertise: '权威阵容',
|
||||
judgesHat: {
|
||||
jae: 'Code‑Create (韩国)分公司总监\nBesfxxk 创意总监',
|
||||
diego: 'OnTheList(香港)\n联合创始人兼首席执行官',
|
||||
gregory: 'Gabriela Hearst\n(意大利)高级设计师',
|
||||
vincenzo: '《南华早报》Style 杂志\n(香港)主编',
|
||||
tim: '现代传播集团\n(上海)时尚总监',
|
||||
desmond: '《Vogue》\n(新加坡)主编'
|
||||
jae: 'Code-Create 韩国负责人\nBesfxxk 创意总监\nMax Mara & Corelate前造型顾问',
|
||||
jaeCountry: '(韩国)',
|
||||
rosie: '老佛爷百货公司商品部副总监',
|
||||
rosieCountry: '(中国内地)',
|
||||
gregory: 'Gabriela Hearst 高级设计师\nBottega Veneta & Burberry\n前男装设计负责人',
|
||||
gregoryCountry: '(意大利)',
|
||||
annie: '周大福珠宝集团首席运营官',
|
||||
annieCountry: '(中国香港)',
|
||||
xaven: '《Madame Figaro FłehX》总经理兼编辑总监',
|
||||
xavenCountry: '(中国香港)',
|
||||
desmond: '《Vogue 新加坡版》主编',
|
||||
desmondCountry: '(新加坡)'
|
||||
},
|
||||
tbd: '待定',
|
||||
awardPrizes: '奖项与奖金',
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
<img :src="item.picture" class="picture" />
|
||||
<div class="name">{{ $t(item.name) }}</div>
|
||||
<div class="desc">{{ $t(item.desc) }}</div>
|
||||
<div class="region arial-bold">{{ $t(item.region) }}</div>
|
||||
</template>
|
||||
<template v-else>
|
||||
<div class="picture tbd"></div>
|
||||
@@ -28,10 +29,10 @@ import { onBeforeUnmount, onMounted, nextTick, ref, inject } from 'vue'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { gsap } from 'gsap'
|
||||
import jae from '@/assets/images/award/jae.png'
|
||||
import diego from '@/assets/images/award/diego.png'
|
||||
import rosiexia from '@/assets/images/award/rosiexia.png'
|
||||
import gregory from '@/assets/images/award/gregory.png'
|
||||
import vincenzo from '@/assets/images/award/vincenzo.png'
|
||||
import tim from '@/assets/images/award/tim.png'
|
||||
import annie from '@/assets/images/award/anniewong.png'
|
||||
import xaven from '@/assets/images/award/xavenmak.png'
|
||||
import desmond from '@/assets/images/award/desmond.png'
|
||||
|
||||
const { t } = useI18n()
|
||||
@@ -41,35 +42,38 @@ const judgements = [
|
||||
{
|
||||
picture: jae,
|
||||
name: 'Jae Hyuk Lim',
|
||||
desc: 'AwardsPage.judgesHat.jae'
|
||||
desc: 'AwardsPage.judgesHat.jae',
|
||||
region: 'AwardsPage.judgesHat.jaeCountry'
|
||||
},
|
||||
{
|
||||
picture: diego,
|
||||
name: 'Diego Dultzin Lacoste',
|
||||
desc: 'AwardsPage.judgesHat.diego',
|
||||
tbd: true
|
||||
picture: rosiexia,
|
||||
name: 'Rosie Xia',
|
||||
desc: 'AwardsPage.judgesHat.rosie',
|
||||
region: 'AwardsPage.judgesHat.rosieCountry'
|
||||
},
|
||||
{
|
||||
picture: gregory,
|
||||
name: 'Gregory de la Hogue Moran',
|
||||
desc: 'AwardsPage.judgesHat.gregory'
|
||||
desc: 'AwardsPage.judgesHat.gregory',
|
||||
region: 'AwardsPage.judgesHat.gregoryCountry'
|
||||
},
|
||||
{
|
||||
picture: vincenzo,
|
||||
name: 'Vincenzo La Torre',
|
||||
desc: 'AwardsPage.judgesHat.vincenzo',
|
||||
tbd: true
|
||||
picture: annie,
|
||||
name: 'Annie Wong',
|
||||
desc: 'AwardsPage.judgesHat.annie',
|
||||
region: 'AwardsPage.judgesHat.annieCountry'
|
||||
},
|
||||
{
|
||||
picture: tim,
|
||||
name: 'Tim Lim',
|
||||
desc: 'AwardsPage.judgesHat.tim',
|
||||
tbd: true
|
||||
picture: xaven,
|
||||
name: 'Xaven Mak',
|
||||
desc: 'AwardsPage.judgesHat.xaven',
|
||||
region: 'AwardsPage.judgesHat.xavenCountry'
|
||||
},
|
||||
{
|
||||
picture: desmond,
|
||||
name: 'Desmond Lim',
|
||||
desc: 'AwardsPage.judgesHat.desmond'
|
||||
desc: 'AwardsPage.judgesHat.desmond',
|
||||
region: 'AwardsPage.judgesHat.desmondCountry'
|
||||
}
|
||||
]
|
||||
|
||||
@@ -203,14 +207,15 @@ onBeforeUnmount(() => {
|
||||
.judgement-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
column-gap: 23.22rem;
|
||||
row-gap: 8rem;
|
||||
column-gap: 19rem;
|
||||
row-gap: 9.2rem;
|
||||
padding: 0 25rem 0 26.6rem;
|
||||
div {
|
||||
text-align: center;
|
||||
}
|
||||
.judgement-item {
|
||||
overflow: hidden;
|
||||
line-height: 2.4rem;
|
||||
.picture {
|
||||
width: 20.2rem;
|
||||
height: 26rem;
|
||||
@@ -225,6 +230,7 @@ onBeforeUnmount(() => {
|
||||
font-family: 'PoppinsBold';
|
||||
font-weight: 600;
|
||||
font-size: 2.4rem;
|
||||
width: 90%;
|
||||
}
|
||||
.desc {
|
||||
color: #585858;
|
||||
@@ -234,13 +240,19 @@ onBeforeUnmount(() => {
|
||||
white-space: pre-line;
|
||||
text-align: center;
|
||||
}
|
||||
.region {
|
||||
font-family: 'ArialBold';
|
||||
font-weight: 700;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.mobile {
|
||||
height: 139.6rem;
|
||||
height: auto;
|
||||
background: url('@/assets/images/mobile_version_background/judge_bg.png') no-repeat;
|
||||
background-size: 100% 100%;
|
||||
padding-top: 6rem;
|
||||
padding-bottom: 16.9rem;
|
||||
.title {
|
||||
font-size: 3.2rem;
|
||||
margin-bottom: 0.8rem;
|
||||
|
||||
Reference in New Issue
Block a user