ejenks Posted March 6, 2023 Share Posted March 6, 2023 Hi everyone, I am currently working on creating an engaging landing page for my graphic design portfolio website. Toward the bottom of the landing page (https://www.ellajenkinsdesigns.com/), I have an image carousel that features some of my works. Although it looks fine now, I was wondering if there was a way to make the carousel auto-scroll or auto-play, so the projects rotate by themselves when users are on the page. Also, is there a way to have each carousel image link to a specific page? I would like to have the projects featured on the carousel link to their respective project page when clicked. Thanks! Link to comment
tuanphan Posted March 10, 2023 Share Posted March 10, 2023 #1. Add to Settings > Advanced > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> $( ( ) => { /* auto click user items list arrow right Version : 0.1d0 SS Version : 7.1 Dependancies : jQuery Note : this effect is not active in SS Preview to test it use private browsing < https://bit.ly/3f6lhq2 >. By : Thomas Creedon < http://www.tomsWeb.consulting/ > */ const clickIntervalSeconds = 2; const dataSectionIds = [ /* to limit the effect to certain page sections, enter data section ids for each page section. the format of each line is a data section id following is an example line. copy the example line below and paste after the example line. remove '// ' at beginning of pasted line. repeat for as many data sections ids as needed */ // '[enter data section id here between single quotes]', ]; // do not change anything below, there be the borg here if ( window.frameElement !== null ) return; // bail if in Preview let selector = [ '.user-items-list-banner-slideshow__arrow-button--right', '.user-items-list-carousel__arrow-button--right', ]; // begin shotgun selector if ( ! dataSectionIds.length ) dataSectionIds.push ( '' ); selector = $.map ( selector, function ( s, i ) { if ( ! dataSectionIds.length ) dataSectionIds.push ( '' ); const a = $.map ( dataSectionIds, function ( d, i ) { if ( d ) d = '[data-section-id="' + d + '"] '; return d + s; } ) return a; } ) .join ( ', ' ); // end shotgun selector const $button = $( selector ); if ( ! $button.length ) return; // bail if no button const click = ( ) => { $button.click ( ); } setInterval ( click, clickIntervalSeconds * 1000 ); } ); </script> #2. You can enable button on each items, then we can give code to turn button link to image link + code to hide button then EarvinChong and hwy89studios 2 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
ejenks Posted March 21, 2023 Author Share Posted March 21, 2023 @tuanphan Thank you so much for the injection code! It looks great. I just noticed you mentioned something about enabling buttons for each item: Quote #2. You can enable button on each items, then we can give code to turn button link to image link + code to hide button then Any tips on how to do this or the code to hide the buttons once created? Thanks again for all the help. Link to comment
tuanphan Posted March 25, 2023 Share Posted March 25, 2023 On 3/21/2023 at 8:40 PM, ejenks said: @tuanphan Thank you so much for the injection code! It looks great. I just noticed you mentioned something about enabling buttons for each item: Any tips on how to do this or the code to hide the buttons once created? Thanks again for all the help. Hi, You need to add it first, then we can help easier In case your site is live & you can't do this. You can duplicate the page, enable it & share duplicated page url, we can also check there Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
ejenks Posted March 28, 2023 Author Share Posted March 28, 2023 @tuanphan Got it, thank you. I just added the buttons for each item and updated my homepage with them: https://www.ellajenkinsdesigns.com/ Link to comment
ejenks Posted March 31, 2023 Author Share Posted March 31, 2023 @tuanphan In addition to making the images in the carousel clickable, is there a way to slow down the sliding animation for the auto-play? I understand that I can adjust the time in between transitions, but I'm wondering if there's any sort of way to adjust the speed of the transition itself. Link to comment
Solution tuanphan Posted April 5, 2023 Solution Share Posted April 5, 2023 On 3/28/2023 at 10:38 AM, ejenks said: @tuanphan Got it, thank you. I just added the buttons for each item and updated my homepage with them: https://www.ellajenkinsdesigns.com/ Add to Design > Custom CSS body.homepage { li.list-item { position: relative; } .list-item-content__button-container { position: static; } a.list-item-content__button.sqs-block-button-element { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; color: transparent !important; background-color: transparent !important; border: none !important; } .list-item-content__button-container { position: static !important; transform: unset !important; } a.list-item-content__button.sqs-block-button-element:before { visibility: hidden; } .user-items-list-carousel__slide { pointer-events: initial !important; user-select: unset !important; } .user-items-list-carousel__gutter { cursor: pointer; } } On 4/1/2023 at 12:57 AM, ejenks said: @tuanphan In addition to making the images in the carousel clickable, is there a way to slow down the sliding animation for the auto-play? I understand that I can adjust the time in between transitions, but I'm wondering if there's any sort of way to adjust the speed of the transition itself. I don't know this.. EarvinChong 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
ejenks Posted April 5, 2023 Author Share Posted April 5, 2023 @tuanphan you ROCK!!! thank you so so much 😁🎊 tuanphan 1 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