displace sesame
This commit is contained in:
parent
fbcf46bbb8
commit
432f20783f
@ -14424,8 +14424,12 @@ responsive land
|
|||||||
|
|
||||||
@media all and (min-width: 1300px){
|
@media all and (min-width: 1300px){
|
||||||
|
|
||||||
|
#hand{
|
||||||
|
top: 15vh;
|
||||||
|
}
|
||||||
#main_title{
|
#main_title{
|
||||||
top: 10vh;
|
top: 10vh;
|
||||||
|
min-height: 35vw;
|
||||||
max-width: 1300px;
|
max-width: 1300px;
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
}
|
}
|
||||||
|
@ -12,11 +12,14 @@ enable_animations = true
|
|||||||
const rotateYCard = '200deg'
|
const rotateYCard = '200deg'
|
||||||
const offsetCard = '10'
|
const offsetCard = '10'
|
||||||
|
|
||||||
let innerWidth = window.innerWidth;
|
let innerWidth = window.innerWidth
|
||||||
|
if (document.onresize) {
|
||||||
|
|
||||||
document.onresize(event => {
|
document.onresize(event => {
|
||||||
innerWidth = window.innerWidth;
|
innerWidth = window.innerWidth
|
||||||
console.log('innerWidth', innerWidth)
|
console.log('innerWidth', innerWidth)
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
function animateCard (id, side) {
|
function animateCard (id, side) {
|
||||||
|
|
||||||
@ -38,8 +41,8 @@ function animateCard (id, side) {
|
|||||||
markers: development_debug,
|
markers: development_debug,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fromObject[side] = 1;
|
fromObject[side] = 1
|
||||||
toObject[side] = offsetCard;
|
toObject[side] = offsetCard
|
||||||
|
|
||||||
gsap.fromTo('#content-' + id, fromObject,
|
gsap.fromTo('#content-' + id, fromObject,
|
||||||
toObject)
|
toObject)
|
||||||
@ -91,8 +94,6 @@ if (enable_animations) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
gsap.to('#main_title', {
|
gsap.to('#main_title', {
|
||||||
delay: 1,
|
delay: 1,
|
||||||
// xPercent: ()=>nav.offsetHeight,
|
// xPercent: ()=>nav.offsetHeight,
|
||||||
@ -219,7 +220,7 @@ if (enable_animations) {
|
|||||||
gsap.fromTo('#content_all_img',
|
gsap.fromTo('#content_all_img',
|
||||||
{
|
{
|
||||||
scale: 1,
|
scale: 1,
|
||||||
left: "-100"
|
left: '-100'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scale: 1.1,
|
scale: 1.1,
|
||||||
|
Loading…
Reference in New Issue
Block a user