OliviaNye Posted May 6, 2022 Share Posted May 6, 2022 How do I create a splash screen/welcome screen that fades into my homepage? Link to comment
tuanphan Posted May 8, 2022 Share Posted May 8, 2022 (edited) Add this to Settings > Advanced > Code Injection > Footer <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> <div class="logoload"></div> <style> .logoload { /* SET BACKGROUND COLOR */ background-color: #fff; /* SET BACKGROUND SIZE */ background-size: 90px; position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background-position: center; background-repeat: no-repeat; background-image: url("https://static1.squarespace.com/static/5d2b34d977f80900014edb0d/t/5db97e10780a6c1bc1b16e3e/1572427397438/?format=1500w"); } </style> <script type="text/javascript"> $(window).load(function() { $(".logoload").delay(500).fadeOut("slow"); }) </script> Edited May 9, 2022 by tuanphan updated jquery latest version paul2009 1 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
paul2009 Posted May 8, 2022 Share Posted May 8, 2022 2 hours ago, tuanphan said: https://ajax.googleapis.com/ajax/libs/jquery/2.2.0 Note that the solution posted above uses an old version of jQuery (version 2.2.0) that has known security vulnerabilities. It would be better to use the latest version of jQuery (currently 3.6.0). 🙂 tuanphan 1 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. 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