Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a532e31
パートナーホバーアクション追加
Nov 13, 2020
76107fa
トップクライアント、パートナーアニメーション実装
Nov 13, 2020
8a9afaf
main js 修正
Nov 13, 2020
88aeb8d
main js 修正vueを追加
Nov 13, 2020
0abd22c
GSAPバージョン修正
Nov 13, 2020
59893e9
GSAPバージョン修正
Nov 13, 2020
2400e5e
GSAP main.js 修正
Nov 13, 2020
cec4268
main.js 修正
Nov 13, 2020
d3a8997
main.js 修正
Nov 13, 2020
d961386
main.js 修正
Nov 13, 2020
4923f86
main.js 修正
Nov 13, 2020
fa42b9d
main.js 修正
Nov 13, 2020
71a50f6
main.js 修正
Nov 13, 2020
f210934
重複してる画像修正
Nov 14, 2020
d0b1261
GSAPをDistから読み込み
Nov 14, 2020
d5fa599
gridsome configに ssr falseを追加
Nov 14, 2020
e55ebe9
gridsome configにエラーかわったので読み込み先を修正use: 'gsap/ScrollTrigger',
Nov 14, 2020
4c558ed
TopPartners.vueのgsap読み込み先をdistでないものに変更
Nov 14, 2020
2c031e8
gridsome configを修正
Nov 14, 2020
96b562f
gridsome configでgsap全体を読み込む
Nov 14, 2020
2600d8c
gridsome configでguild venderに追加
Nov 14, 2020
158aa63
main js でのimport順調整
Nov 14, 2020
dc8b242
main js でのimport順調整
Nov 14, 2020
84912a7
top partners にcomponetとしてgsapとscrolltrigger追加
Nov 14, 2020
e5471b3
vue.prototypeの位置変更
Nov 14, 2020
072ded9
scroll triggerだけdistから読み込みに変更
Nov 14, 2020
6ab3f24
クライアント、パートナーアニメーション完成
Nov 14, 2020
dd72263
アニメーション微調整
Nov 14, 2020
c41e404
CTA アニメーション調整
Nov 14, 2020
2ca2752
footer インタラクション作成してSCSS共通化
Nov 14, 2020
d3a42f9
CTA アニメーション修正
Nov 14, 2020
ec5b177
クライアント部分アニメーション修正
Nov 14, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
"global": "^4.4.0",
"gridsome": "^0.7.14",
"gridsome-plugin-remark-prismjs-all": "^0.3.5",
"gsap": "^3.5.1",
"gsap": "3.4.0",
"prismjs": "^1.20.0",
"sharp": "^0.26.2",
"swiper": "^6.0.4",
"vercel": "^20.1.1",
"vue": "^2.0.0",
Expand Down
4 changes: 3 additions & 1 deletion src/assets/scss/_index.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
@import 'color';
@import 'font';
@import 'breakpoint';
@import 'wordpress-article';
@import 'wordpress-article';
@import 'transition';
@import 'mixins';
53 changes: 53 additions & 0 deletions src/assets/scss/_mixins.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
@mixin linkList {
.c-footer-list {
list-style: none;
padding-left: 14px;

&__item {
position: relative;
font-size: 0.87rem;
line-height: 18px;
margin-bottom: 1.4rem;
&:before {
position: absolute;
top: 50%;
left: -20px;
content: '';
display: block;
color: #fff;
width: 10px;
height: 1px;
background: $mid-gray-2;
transition: $soease;
transform: scaleX(0);
transform-origin: left center;
}
&:hover::before {
transform: scaleX(1);
transform-origin: right center;
}
&:after {
position: absolute;
top: 50%;
left: -20px;
content: '';
display: block;
color: #fff;
width: 10px;
height: 1px;
background: $mid-gray-2;
transition: $soease;
opacity: 0.5;
}
} //&__list-item

&__link {
text-decoration: none;
color: $white;
transition: $soease;
&:hover {
color: $mid-gray-2;
}
}
} // c-footer-list
}
1 change: 1 addition & 0 deletions src/assets/scss/_transition.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$soease: all 0.4s cubic-bezier(0.76, 0, 0.3, 1);
11 changes: 7 additions & 4 deletions src/components/CallToAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -295,14 +295,15 @@
}
&::before {
content: 'Office Hours';
filter: blur(2px);
position: absolute;
display: block;
z-index: 0;
left: 0;
top: 24px;
right: 0;
bottom: 0;
opacity: 0.1;
opacity: 0.08;
font-family: $font-en-light;
font-size: 15vw;
transition: all 0.4s cubic-bezier(0.76, 0, 0.3, 1);
Expand All @@ -312,12 +313,14 @@
}
@include media-breakpoint-down(sm) {
top: 20%;
font-size: 14vw;
font-size: 14.5vw;
}
}
&:hover::before {
opacity: 0.15;
}
opacity: 0.2;
left: 8px;
filter: blur(0);
}
// Border
&::after {
content: '';
Expand Down
32 changes: 1 addition & 31 deletions src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,37 +239,7 @@ if (process.client) {
} // c-footer-menu

// メニューのリスト
.c-footer-list {
list-style: none;
padding-left: 14px;

&__item {
position: relative;
font-size: 0.87rem;
line-height: 28px;
margin-bottom: 0.5rem;
&:before {
position: absolute;
top: 50%;
left: -12px;
content: '';
display: block;
color: #fff;
width: 5px;
height: 1px;
background: $mid-gray-2;
}
} //&__list-item

&__link {
text-decoration: none;
color: $white;
transition: all 0.3s ease;
&:hover {
color: $mid-gray-2;
}
}
} // c-footer-list
@include linkList;

.sns-link {
margin: 16px 0 40px 0;
Expand Down
34 changes: 1 addition & 33 deletions src/components/FooterBlog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,37 +28,5 @@ query ($page: Int) {
</static-query>

<style lang="scss" scoped>
// メニューのリスト
.c-footer-list {
list-style: none;
padding-left: 14px;

&__item {
position: relative;
font-size: 0.87rem;
line-height: 18px;
margin-bottom: 0.6rem;
&:before {
position: absolute;
top: 50%;
left: -12px;
content: '';
display: block;
color: #fff;
width: 5px;
height: 1px;
background: $mid-gray-2;
}
} //&__list-item

&__link {
text-decoration: none;
color: $white;
transition: all 0.3s ease;
&:hover {
color: $mid-gray-2;
}
}
} // c-footer-list

@include linkList;
</style>
87 changes: 0 additions & 87 deletions src/components/FooterOurPartners.vue

This file was deleted.

34 changes: 1 addition & 33 deletions src/components/FooterWorks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,37 +31,5 @@ query ($page: Int) {
</static-query>

<style lang="scss" scoped>
// メニューのリスト
.c-footer-list {
list-style: none;
padding-left: 14px;

&__item {
position: relative;
font-size: 0.87rem;
line-height: 18px;
margin-bottom: 0.6rem;
&:before {
position: absolute;
top: 50%;
left: -12px;
content: '';
display: block;
color: #fff;
width: 5px;
height: 1px;
background: $mid-gray-2;
}
} //&__list-item

&__link {
text-decoration: none;
color: $white;
transition: all 0.3s ease;
&:hover {
color: $mid-gray-2;
}
}
} // c-footer-list

@include linkList;
</style>
Loading