johnay Posted August 7, 2020 Share Posted August 7, 2020 Site URL: https://coconut-hypersphere-nmr5.squarespace.com/config/ I currently have the horizontal and vertical clip animation on my website however I was wondering if there is a way to slow down the animation even more? Any help would be greatly appreciated. site password- johnay Link to comment
MidnightClub Posted August 7, 2020 Share Posted August 7, 2020 I'm looking for the same thing.. If I find a solution I'll post it back. Animations are way too fast on the image blocks... Link to comment
MidnightClub Posted August 7, 2020 Share Posted August 7, 2020 Hey @johnay I'm using collide and have found css to slow it down. Basic speed is 800ms so just by changing that you can alter the speed (I'm trying 1600ms and it works great) /*COLLIDE IMAGE POSITION RIGHT*/ .image-block-outer-wrapper.combination-animation-collide.image-position-right .image-inset{ transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } .image-block-outer-wrapper.combination-animation-collide.image-position-right .sqs-dynamic-text-container { transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } /*COLLIDE IMAGE POSITION LEFT*/ .image-block-outer-wrapper.combination-animation-collide.image-position-left .image-inset{ transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } .image-block-outer-wrapper.combination-animation-collide.image-position-left .sqs-dynamic-text-container { transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } I'm looking now for the same for the "reveal" animation.. Hope this helps. Fab Link to comment
MidnightClub Posted August 7, 2020 Share Posted August 7, 2020 (edited) alright try this and just change the "800ms" to the speed you want for vertical clip on an image block with text (works with overlap and collage for me) : .image-block-outer-wrapper.combination-animation-vertical-clip .sqs-dynamic-text-container { transition: -webkit-clip-path 800ms cubic-bezier(.4,0,.2,1),clip-path 800ms cubic-bezier(.4,0,.2,1); will-change: -webkit-clip-path,clip-path; I guess for horizontal clip you just have to change to .combination-animation-horizontal-clip Cheers, Fab Edited August 7, 2020 by MidnightClub Correction Link to comment
johnay Posted August 8, 2020 Author Share Posted August 8, 2020 On 8/7/2020 at 12:38 PM, MidnightClub said: alright try this and just change the "800ms" to the speed you want for vertical clip on an image block with text (works with overlap and collage for me) : .image-block-outer-wrapper.combination-animation-vertical-clip .sqs-dynamic-text-container { transition: -webkit-clip-path 800ms cubic-bezier(.4,0,.2,1),clip-path 800ms cubic-bezier(.4,0,.2,1); will-change: -webkit-clip-path,clip-path; I guess for horizontal clip you just have to change to .combination-animation-horizontal-clip Cheers, Fab thank you @MidnightClub for the response ! It doesn't seem to work on my site. i have put the code in custom CSS exactly as you said and have changed the speeds nothing is happening. Link to comment
MidnightClub Posted August 10, 2020 Share Posted August 10, 2020 Hey @johnay I can't access your site, tells me I don't have permissions. Check the site availability in settings, must be on private and not password protected. If I can have a look I'm sure we can find the right css for you. Fab Link to comment
johnay Posted August 12, 2020 Author Share Posted August 12, 2020 On 8/10/2020 at 10:38 PM, MidnightClub said: Hey @johnay I can't access your site, tells me I don't have permissions. Check the site availability in settings, must be on private and not password protected. If I can have a look I'm sure we can find the right css for you. Fab hi @MidnightClub I have put it on private now , before it was password protected with the password : johnay thank you, john Link to comment
MidnightClub Posted August 12, 2020 Share Posted August 12, 2020 Sorry now that i re read myself, it might have been confusing.. if it's in private we can't see it. and i tought it was the setting you had as it says I don't have permissions. So setting has to be password protected Link to comment
johnay Posted August 12, 2020 Author Share Posted August 12, 2020 4 hours ago, MidnightClub said: Sorry now that i re read myself, it might have been confusing.. if it's in private we can't see it. and i tought it was the setting you had as it says I don't have permissions. So setting has to be password protected ok I have set it to password protected with the password :- johnay Link to comment
MidnightClub Posted August 13, 2020 Share Posted August 13, 2020 alright! so on your homepage, i saw the blocks with horizontal clip anim. Speed is at 800ms, which I guess is default. So if you add that to your css it should do the trick: .image-block-outer-wrapper.combination-animation-horizontal-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } .image-block-outer-wrapper.combination-animation-vertical-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } I set it to 3600ms so that the difference is obvious, for both horizontal and vertical clip animation. So you just have to change that value to change the speed. Let me know if it work. Cheers, Fab johnay 1 Link to comment
johnay Posted August 13, 2020 Author Share Posted August 13, 2020 12 minutes ago, MidnightClub said: alright! so on your homepage, i saw the blocks with horizontal clip anim. Speed is at 800ms, which I guess is default. So if you add that to your css it should do the trick: .image-block-outer-wrapper.combination-animation-horizontal-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } .image-block-outer-wrapper.combination-animation-vertical-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } I set it to 3600ms so that the difference is obvious, for both horizontal and vertical clip animation. So you just have to change that value to change the speed. Let me know if it work. Cheers, Fab it worked ! thank you @MidnightClub all the best, John Link to comment
MidnightClub Posted August 13, 2020 Share Posted August 13, 2020 Yeah! Glad I could help @johnay! Take care Fab johnay 1 Link to comment
kayleep1987 Posted February 12, 2021 Share Posted February 12, 2021 @MidnightClub Is the code similar for "Fade-in" Im needing to do the same thing but for a fade in animation Poppyseeds, lexi315p and mames 3 Link to comment
rishisamuelpatel Posted May 5, 2021 Share Posted May 5, 2021 On 8/14/2020 at 12:01 AM, MidnightClub said: alright! so on your homepage, i saw the blocks with horizontal clip anim. Speed is at 800ms, which I guess is default. So if you add that to your css it should do the trick: .image-block-outer-wrapper.combination-animation-horizontal-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } .image-block-outer-wrapper.combination-animation-vertical-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } I set it to 3600ms so that the difference is obvious, for both horizontal and vertical clip animation. So you just have to change that value to change the speed. Let me know if it work. Cheers, Fab Hey Fab, This looked great, is it possible to make it work on a scroll? So it vertically clips when the page is scrolled down and reversed when scroll up! Link to comment
Poppyseeds Posted January 18, 2022 Share Posted January 18, 2022 On 2/11/2021 at 8:33 PM, kayleep1987 said: @MidnightClub Is the code similar for "Fade-in" Im needing to do the same thing but for a fade in animation Exactly what I'm looking for, too! mames 1 Link to comment
puslingpaahaender Posted January 30, 2022 Share Posted January 30, 2022 Hello, I´m looking for two things. 1.: to slow down the overall fade-in animation in the design of my webpage. It feels rather abprupt at the moment. Is this code working for that or is it specific for certain blocks? 2.: I´m looking for a possibility to slow down the fade-in of slidergallery. If the code above is possible to use for that, ca someone tell me how to apply it? All the best and thank you so much, Julia Link to comment
puslingpaahaender Posted January 30, 2022 Share Posted January 30, 2022 On 8/7/2020 at 1:11 PM, MidnightClub said: Hey @johnay I'm using collide and have found css to slow it down. Basic speed is 800ms so just by changing that you can alter the speed (I'm trying 1600ms and it works great) /*COLLIDE IMAGE POSITION RIGHT*/ .image-block-outer-wrapper.combination-animation-collide.image-position-right .image-inset{ transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } .image-block-outer-wrapper.combination-animation-collide.image-position-right .sqs-dynamic-text-container { transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } /*COLLIDE IMAGE POSITION LEFT*/ .image-block-outer-wrapper.combination-animation-collide.image-position-left .image-inset{ transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } .image-block-outer-wrapper.combination-animation-collide.image-position-left .sqs-dynamic-text-container { transition: opacity 1600ms cubic-bezier(.4,0,.2,1),transform 1600ms cubic-bezier(.4,0,.2,1); will-change: opacity,transform; } I'm looking now for the same for the "reveal" animation.. Hope this helps. Fab Can you tell me, where I should add the code? Best regards, Julia Link to comment
tuanphan Posted February 3, 2022 Share Posted February 3, 2022 On 1/31/2022 at 2:21 AM, puslingpaahaender said: Can you tell me, where I should add the code? Best regards, Julia Design > Custom CSS Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
lexi315p Posted July 25, 2022 Share Posted July 25, 2022 On 1/18/2022 at 1:51 PM, Poppyseeds said: Exactly what I'm looking for, too! I'm also looking for help with the fade in animation to slow it down! mames 1 Link to comment
lexi315p Posted July 27, 2022 Share Posted July 27, 2022 On 8/13/2020 at 8:01 AM, MidnightClub said: alright! so on your homepage, i saw the blocks with horizontal clip anim. Speed is at 800ms, which I guess is default. So if you add that to your css it should do the trick: .image-block-outer-wrapper.combination-animation-horizontal-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } .image-block-outer-wrapper.combination-animation-vertical-clip .image-block-wrapper{ transition: -webkit-clip-path 3600ms cubic-bezier(.4,0,.2,1),clip-path 3600ms cubic-bezier(.4,0,.2,1); } I set it to 3600ms so that the difference is obvious, for both horizontal and vertical clip animation. So you just have to change that value to change the speed. Let me know if it work. Cheers, Fab Could you help me with the fade transition? i cant figure out how to slow it down Link to comment
mames Posted October 11, 2022 Share Posted October 11, 2022 (edited) Has any one figured out code to slow down the fade-up of the buttons? I'm also interested in slowing down the fade up of paragraph text. Edited October 11, 2022 by mames Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment