This is exactly the type of information I needed about square space. Although I will be creating an animation of my own, it will be a helpful starting point
Carl mate can't thank you enough for your hugely informative and succinct tutorials - rarely do I search for something and find 'the magic bullet' - very much look forward to watching the rest of your vids - keep up the great work!
Carl, thank you so much for this helpful tutorial. Using the example you give here the animation appears on *every* page in the site. How do I restrict the animation to JUST the splash page?
Mate, I really have no clue how you have so little likes. Your content is fantastic, I'm pretty intermediate with code, but you make it sooooo much easier than me having to use my brain. Nice one!
Hi Carl, everything seem to work perfectly. the only thing is, the splash screen is still would still be on the page after the slideout animation, blocking the view of the whole site...
Hi Carl, thank you for your amazing tutorials! They're helping me a lot. Do you know if it's possible to add an interactive lottie file as the background of a particular Squarespace section in 7.1?
Hey, Carl great video. Another question here. How can I make the loading text closer to the center? With the new iOs update, the search bar located at the bottom covers the text. Thanks!!
Hello Carl, This tutorial is extremely helpful! I do have a question. Lets say I wanted to add my own custom made animation as a splash screen. is there a format I should render it in and is there a suggestion on the best place to post it for a url, like vimeo private?
Hi Carl, this is a value bomb, thanks very much! I have a question with regards to the animation. So if I get it right the animation is linked to the Home page, right? So my question is when someone is on another page and then clicks on the logo of the website or on Home in the navigation, will this animation appear again?
Hi Carl, Thanks so much for the great in depth tutorial! I was just wondering is there any way of doing the same thing using a custom logo animation / gif made in after effects or would have to be uploaded via lottie animations?
@@Carl_Johnson thank you for such an insightful video! I am attempting to do the same thing as Mehak, however having trouble in making the gif appear in the same way as the lottie animation. Would you mind expanding on what part of the code should be removed once including a self stored gif into the splash screen? Thanks a lot.
@@Carl_Johnson Hi there. Thank you for the tutorial! I am also hoping to create a cover page for a client's website that features an animated logo I made with AE. Do you suggest that I upload my animated logo to a site like GIPHY in order to use an img tag?
@@Carl_Johnson To clarify: I essentially want the animated logo to be small and centred above a 'welcome' button on a landing/cover page that, upon clicking, allows the web visitor to view the rest of the client's website.
Hi, thank you for this video! unfortunately it didn't work for me. The image is at the top and the background didn't apply so I can still see the website behind. I did all the steps. Is there a way to sort this out? thanks a lot!!
Hi Carl, thank you for the video, clear and easy to follow! I would like to know if the same is possible using and embedded video instead of animation, I tried with an iFrame but that didn't work, never leaves the page. Also is there any code to display the animation only on the first visit to the page?
Hi Carl! Thank you so much for the tutorial, it is amazingg!! I just have a question. Its possible to apply this animated screen just to one page? i want to use it as a cover page but i dont know how i can just apply for the home page and not the other linked pages. Thank you so much!!
Hi Carl! Thank you for this helpful video. The loading screen was working well till suddenly my animation is now on the top of the page instead of the middle. Is there a solution I can look at?
Hi Carl! This is amazing! I was just wondering if there is a way to have this only appear when you first enter the site? My animation plays every time I go from page to page. Thanks a bunch!
Hi Carl, thanks so much for this video! For some reason after the animation disappears it comes right back and it's not possible to see that actual page. Any ideas why this might be happening?
I'm still having a problem on my site when the animation fades, I can't click anything on my page. It's just a landing page but I need to be able to click a contact button. Any way to fix? Thanks!
THANK YOU! I've managed to do this successfully but for some reason on mobile the animation jumps around. Is there anything I can add to the code to fix this? Thank you so much for all of this. I subscribed. :)
Sure, you'll need to upload your PNG to the Custom CSS and get the image URL like in this video ruclips.net/video/DRR0I3eOeqg/видео.html Once you've got the URL add this to your splash wrapper instead of the Lottie player : So it should look something like this:
Loading Then replace YOURURLHERE with the one you got when you uploaded your PNG to the CSS. You can change width="500" up or down to make your PNG bigger or smaller.
AWESOME VID! Im wondering though.. can you limit it to only display when you click on the home page? I dont want this to pop up when im navigating through the various pages on my site. Only when you get back to the home page.
Hi! Also really enjoyed the video and found it so helpful :) However, I am having the same problem even though my code injection is currently under 'header'. The description belows it says that it will be injected into the 'head' tag on every page and I'm not sure how to limit this. Would appreciate any advice on how you handled this!!
Hi, Is there anyway of optimising the writing for mobile? I'm not sure where I should be adding the @media part in the css? The writing is too small for my mobile version.
Hey Carl, thank you for this tutorial. I've been surfing through your channel now for several weeks now and I love it! Quick question about this though. The "Loading" text underneath the animation is so small. How would I increase the size of this text? Might seem like a dumb question but I've never done anything like this before. Thanks again!
Hey, no problem Danny! To increase the size you can add font-size to the h2 style like so: Loading Then you can change 20vw to whatever size you want. The reason you'd use vw for the font size instead of px is so that it resizes responsively for different screen sizes.
Hey Carl!! Amazing Video. Tad issue I'm having is after the SlideOut effect Half of the background color I used for the splash screen is still on the homepage. Any help?
@@Carl_Johnson Thank you Carl! Being that the splash screen reappears every time the page is loaded. Does Squrespace allow it to only appear at the beginning of a new session? I think it'd get a tad annoying if it appeared every time the page loaded.
Thank you Carl, this is super useful! Quick question: I have tried it but can't seem to make it work. I have used the code below. Would you have any idea this doesn't work? I'm using Squarespace 7.1. Thank you!! .lottie-player { position: fixed; z-index: 9999; background-color: #E8E5DD height: 100vh; width: 100vw; display: flex flex-flow: column nowrap; justify-content: center; align-items: center; animation-name: fadeOut; animation-fill-mode: forwards; animation-duration: 2s; animation-delay: 3s; } @keyframes fadeOut { from {opacity: 100%;} to {opacity: 0%;} }
Make sure you add to your Keyframe to { margin-left: -100vw;}. If you are using Opacity you must move the invisible div off the page. You can also use idex setting but just adding this to your code should work. This is mine for reference, I use opacity in my keyframes so I had to still hide or move the element from the screen. @keyframes hideOut { from {opacity: 1;} to {opacity: 0; margin-left: -100vw;}
@@theentrepreneur967 This is very helpful. My only issue is that the fade out and the slide happen at the same time. Do you know how to make the slide off the page happen AFTER the fade out so we don't see it happening at the same time?
everything worked perfectly except for the sliding mechanic #keyframes slideOut { from {margin-left: 0vw;} to {margin-left: 100vw;} just wasn't sliding out of frame for me
Lottie Player CDN:
Lottie Player
…and shout out to Big Ted! My daughter has wanted me to have him in a video for ages.
your player code is missing px on the second 400. that had me confused for ages
This is exactly the type of information I needed about square space. Although I will be creating an animation of my own, it will be a helpful starting point
You always deliver ! Thank you Carl.
Thanks Sereti!
Carl mate can't thank you enough for your hugely informative and succinct tutorials - rarely do I search for something and find 'the magic bullet' - very much look forward to watching the rest of your vids - keep up the great work!
Thanks for the kind words darwinee! Glad you found what you were looking for.
Brilliant. So helpful mate. Cheers and thanks again!
Carl, thank you so much for this helpful tutorial. Using the example you give here the animation appears on *every* page in the site. How do I restrict the animation to JUST the splash page?
Mate, I really have no clue how you have so little likes. Your content is fantastic, I'm pretty intermediate with code, but you make it sooooo much easier than me having to use my brain. Nice one!
Cheers Fullnerd79 👍
Hey Carl- i think I might can actually do this! Great video! Subscribing!
Hi Carl, everything seem to work perfectly. the only thing is, the splash screen is still would still be on the page after the slideout animation, blocking the view of the whole site...
Hi Carl, thank you for your amazing tutorials! They're helping me a lot. Do you know if it's possible to add an interactive lottie file as the background of a particular Squarespace section in 7.1?
Hey. What do I have to do in order to make it fade out instead of slide to the left? I swear I have tried so many videos and articles.
SUPER COOL!
Hey, Carl great video. Another question here. How can I make the loading text closer to the center? With the new iOs update, the search bar located at the bottom covers the text. Thanks!!
Hello Carl, This tutorial is extremely helpful! I do have a question. Lets say I wanted to add my own custom made animation as a splash screen. is there a format I should render it in and is there a suggestion on the best place to post it for a url, like vimeo private?
Ah, I found the answer in one of your videos. "Getting Started With Lottie Animations in Squarespace" Thank you!
Thank you so much for showing how to use lottie animations on sqsp.
No problem Shari!
Hi Carl, this is a value bomb, thanks very much! I have a question with regards to the animation. So if I get it right the animation is linked to the Home page, right? So my question is when someone is on another page and then clicks on the logo of the website or on Home in the navigation, will this animation appear again?
Hi Carl, Thanks so much for the great in depth tutorial! I was just wondering is there any way of doing the same thing using a custom logo animation / gif made in after effects or would have to be uploaded via lottie animations?
Hi Mehak! I haven't tried it, but if you replace the Lottie player with an img tag that should work. www.w3schools.com/tags/tag_img.asp
@@Carl_Johnson thank you for such an insightful video! I am attempting to do the same thing as Mehak, however having trouble in making the gif appear in the same way as the lottie animation. Would you mind expanding on what part of the code should be removed once including a self stored gif into the splash screen? Thanks a lot.
@@Carl_Johnson Hi there. Thank you for the tutorial! I am also hoping to create a cover page for a client's website that features an animated logo I made with AE. Do you suggest that I upload my animated logo to a site like GIPHY in order to use an img tag?
@@Carl_Johnson To clarify: I essentially want the animated logo to be small and centred above a 'welcome' button on a landing/cover page that, upon clicking, allows the web visitor to view the rest of the client's website.
Hi, thank you for this video! unfortunately it didn't work for me. The image is at the top and the background didn't apply so I can still see the website behind. I did all the steps. Is there a way to sort this out? thanks a lot!!
ohh yess! pls let me thnks. this video really useful and save my day. 🙏🙏
You're welcome 😊
Hi Carl, thank you for the video, clear and easy to follow! I would like to know if the same is possible using and embedded video instead of animation, I tried with an iFrame but that didn't work, never leaves the page. Also is there any code to display the animation only on the first visit to the page?
Hi Carl! Thank you so much for the tutorial, it is amazingg!! I just have a question. Its possible to apply this animated screen just to one page? i want to use it as a cover page but i dont know how i can just apply for the home page and not the other linked pages. Thank you so much!!
@Simon Blanco Hi Simon, you can add the code under your Homepage --> advance settings and inject the code there.
Hi Carl! Thank you for this helpful video. The loading screen was working well till suddenly my animation is now on the top of the page instead of the middle. Is there a solution I can look at?
Its not working from me from the code injection.Is there any way to find both codes as the news ones?i am just guessing out here.Love you mate
Hi Carl! This is amazing! I was just wondering if there is a way to have this only appear when you first enter the site? My animation plays every time I go from page to page. Thanks a bunch!
I need help on this too!
Hi Nicholas, you can add the code under your Homepage --> advance settings and inject the code there.
@@sinnister48 thank you
Hi Carl, thanks so much for this video! For some reason after the animation disappears it comes right back and it's not possible to see that actual page. Any ideas why this might be happening?
Can this be done using an animation file that I already created? Not a link?
Thanks!
I'm still having a problem on my site when the animation fades, I can't click anything on my page. It's just a landing page but I need to be able to click a contact button. Any way to fix? Thanks!
Hey Rachel have you had any luck with this? I'm running into the same!
@@bysamchizanga I haven't! Desperately trying to figure it out but so far, no luck.
@@bysamchizanga Seems to be an issue with the z-index but nothing I do fixes it
@@bysamchizanga I actually just figured it out. let me know if you need help!
@@rachelsprout5320 yes I would love the help, I’ve been trying everything!
i want to animate my own logo and do something similar. what is the best way to do that?
THANK YOU! I've managed to do this successfully but for some reason on mobile the animation jumps around. Is there anything I can add to the code to fix this? Thank you so much for all of this. I subscribed. :)
Hey has anyone found a fix for this?
Hi Carl, nice one for this video. Question for you how can I substitute a logo (PNG file) instead of the animation?
Sure, you'll need to upload your PNG to the Custom CSS and get the image URL like in this video ruclips.net/video/DRR0I3eOeqg/видео.html
Once you've got the URL add this to your splash wrapper instead of the Lottie player :
So it should look something like this:
Loading
Then replace YOURURLHERE with the one you got when you uploaded your PNG to the CSS.
You can change width="500" up or down to make your PNG bigger or smaller.
@@Carl_Johnson Cheers Lad - buying you a coffee right now.
@@Glasgow808 No problem, and thanks for the coffee 👍
AWESOME VID!
Im wondering though.. can you limit it to only display when you click on the home page? I dont want this to pop up when im navigating through the various pages on my site. Only when you get back to the home page.
Thanks Rykley! Sure! Instead of putting the code into the site-wide code injection, put it into your page header code injection instead.
@@Carl_Johnson THANK YOU! life saver haha
Hi! Also really enjoyed the video and found it so helpful :) However, I am having the same problem even though my code injection is currently under 'header'. The description belows it says that it will be injected into the 'head' tag on every page and I'm not sure how to limit this. Would appreciate any advice on how you handled this!!
Thanks for this! Does this work on older versions of SS?
Hey Owee! Yes, it will work on all versions.
Hi, Is there anyway of optimising the writing for mobile? I'm not sure where I should be adding the @media part in the css? The writing is too small for my mobile version.
And the animation is also too big in the mobile version, ideally would like to make it smaller! Thank you in advance!
Hey Carl, thank you for this tutorial. I've been surfing through your channel now for several weeks now and I love it! Quick question about this though. The "Loading" text underneath the animation is so small. How would I increase the size of this text? Might seem like a dumb question but I've never done anything like this before. Thanks again!
Hey, no problem Danny! To increase the size you can add font-size to the h2 style like so:
Loading
Then you can change 20vw to whatever size you want. The reason you'd use vw for the font size instead of px is so that it resizes responsively for different screen sizes.
Ohhhh, That makes sense. Thanks! Can’t wait for your next video.
Mega lazy, but is this code hosted anywhere to copy paste? Thanks
Hey Carl, the video was great! After I create my page loader, I can't click any links on my site anymore. Can you assist with this? Thanks!
I'm having the same issue, did you manage to find a solution?
Hey Carl!! Amazing Video. Tad issue I'm having is after the SlideOut effect Half of the background color I used for the splash screen is still on the homepage. Any help?
Actually, that was just Squarespace haha, but is there any way to have it so it so it doesn't appear on every page?
Sure! Instead of putting the code into the site-wide code injection, put it into your page header code injection instead.
@@Carl_Johnson Thank you Carl! Being that the splash screen reappears every time the page is loaded. Does Squrespace allow it to only appear at the beginning of a new session? I think it'd get a tad annoying if it appeared every time the page loaded.
Thank you Carl, this is super useful! Quick question: I have tried it but can't seem to make it work. I have used the code below. Would you have any idea this doesn't work? I'm using Squarespace 7.1. Thank you!!
.lottie-player {
position: fixed;
z-index: 9999;
background-color: #E8E5DD
height: 100vh;
width: 100vw;
display: flex
flex-flow: column nowrap;
justify-content: center;
align-items: center;
animation-name: fadeOut;
animation-fill-mode: forwards;
animation-duration: 2s;
animation-delay: 3s;
}
@keyframes fadeOut {
from {opacity: 100%;}
to {opacity: 0%;}
}
do you have an example not using lottie animation?
Hi Nana, I don't have any examples, but you can replace the Lottie Player with a GIF or a video and it will work the same.
everything worked but now I can't edit the page and the links on the page are not working, do you know what I can do to fix this?
Make sure you add to your Keyframe to { margin-left: -100vw;}. If you are using Opacity you must move the invisible div off the page. You can also use idex setting but just adding this to your code should work. This is mine for reference, I use opacity in my keyframes so I had to still hide or move the element from the screen. @keyframes hideOut {
from {opacity: 1;}
to {opacity: 0; margin-left: -100vw;}
@@theentrepreneur967 This is very helpful. My only issue is that the fade out and the slide happen at the same time. Do you know how to make the slide off the page happen AFTER the fade out so we don't see it happening at the same time?
@@SteveMaviano this is the same issue as i am having
Is there any way to make the animation fade out instead of sliding?
Hey Rachel! Yes, replace the keyframes part with this:
@keyframes slideOut {
from {opacity: 1;}
to {opacity: 0;}
}
@@Carl_Johnson Perfect! Thank you so much!!
@@Carl_Johnson I'm also having an issue where after the animation fades, I cannot click anything on my site. Is there a way to fix this?
Rachel Sprout
Hi Rachel!
I have the same problem with my site, any suggestions? have u fixed smh?
@@biancaalexandracotea figure it out?
everything worked perfectly except for the sliding mechanic
#keyframes slideOut {
from {margin-left: 0vw;}
to {margin-left: 100vw;}
just wasn't sliding out of frame for me
Nevermind, I went through the video again and again and realized that I put a hashtag instead of an @. Whoops.
HELLO