continuous scrolling carousels - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Off Topic (http://get-simple.info/forums/forumdisplay.php?fid=12) +--- Thread: continuous scrolling carousels (/showthread.php?tid=15064) |
continuous scrolling carousels - Felix - 2020-09-14 Hi, Does anyone know a library for continuous vertical scrolling carousels, or how to code this ? 4 columns parallel with continuous vertical scrolling carousels Here is an example what I am looking for: https://www.wish.com/ RE: continuous scrolling carousels - zekoolweb - 2020-09-20 (2020-09-14, 04:08:35)Felix Wrote: Hi, I use this one which rely on plain JS, no depedency, but not exactly as wish https://jonchretien.github.io/infinite-carousel-docs/demo/vertical/ maybe this one could be modify for fit to your need ... RE: continuous scrolling carousels - Felix - 2020-09-21 Hi, Thanks for your reply. But I am looking for continuous scrolling, not a stepping carousel. Also it needs to have columns moving in opposite directions. I am on it, so check back soon in this thread. RE: continuous scrolling carousels - Felix - 2020-09-21 Hi, Ok I have finally put together the right css and js to reproduce exactly that gallery on wish.com For those who are interested, I have attached the html, css and js code to this post. (updated on 11:45) You can see this cool gallery in live action here: http://gallery3.showme.zone comments and ideas are welcome. - - - - - - - - - - - - - - - - - - - - - - - Next steps to do: 1. Add light-box functionality to the gallery 2. Expanding the animated banner text 3. Add a cool banner voice 4. Make a beginning with Compress css and js scripts with php in the functions.php file 5. Make a plugin for it. Check back this week in this thread. F. RE: continuous scrolling carousels - zekoolweb - 2020-09-21 (2020-09-21, 20:16:16)Felix Wrote: Hi, Very nice, this would be a nice plugin i guess ! RE: continuous scrolling carousels - Felix - 2020-09-21 Hi Zekoolweb, Thanks for your reply. Good idea to make a plugin for it. I have updated my post. Will work on it end of this week. http://gallery3.showme.zone F. RE: continuous scrolling carousels - Felix - 2020-09-24 Hi, as mentioned I made a beginning with compressing the css and js scripts, such as removing comments and white space. This is useful because it makes a website load even a bit more faster. This can be easily done with straight forward php, here is what I have working so far: Code: if (return_page_slug()=='index') { Ok, so far so good. - - - - - - - - - - - - - - - - - - If anyone knows how to remove white space for the following cases, please let us know: 1) remove white space left from a single quote, example: ('--animation', 'slide') 2) remove white space left and right from => 3) remove white space left and right from = 4) remove white space left and right from + RE: continuous scrolling carousels - Felix - 2020-09-24 Hi, I found a way to remove white space left and right from => = + Make use of str_replace Code: // Remove space around => |