Universal Parallax
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Universal Parallax
I see how universal parallax works in the "Mini" template, which uses Flex Containers.
Will the universal parallax effect work with a carousel? I'm using full width floating mode and I set $PARALLAX_SPEED$ to 9999 in site properites like in Mini.
If I use parallax instead of universal parallax I get the overlap effect but not with universal parallax. But then the images get cut off in smaller breakpoints.
Does it only work in all breakpoints with a layer or flex container?
Will the universal parallax effect work with a carousel? I'm using full width floating mode and I set $PARALLAX_SPEED$ to 9999 in site properites like in Mini.
If I use parallax instead of universal parallax I get the overlap effect but not with universal parallax. But then the images get cut off in smaller breakpoints.
Does it only work in all breakpoints with a layer or flex container?
Re: Universal Parallax
universal parallax does not work with a carousel.
It works with layers, layout grids and a flex container.
It works with layers, layout grids and a flex container.
This is expected behavior, because universal parallax uses 'background-size: cover' to make sure the entire background is covered.But then the images get cut off in smaller breakpoints.
Re: Universal Parallax
Understood, thanks.
Anyone have an idea as to how to do this? Here's an example:
https://juliettecalaf.com/
Anyone have an idea as to how to do this? Here's an example:
https://juliettecalaf.com/
Re: Universal Parallax
Maybe like this?
- add a layout grid
- set the background of the layout grid to universal parallax
- put the carousel inside the layout grid.
- add a layout grid
- set the background of the layout grid to universal parallax
- put the carousel inside the layout grid.
Re: Universal Parallax
I tried that. The only way the carousel will then display is if it's set to a type of flexible.
When I did that, it did not have the parallax effect.
When I did that, it did not have the parallax effect.
Re: Universal Parallax
Correct, because you cannot put a fixed element inside a flexible container. That will break the layout.The only way the carousel will then display is if it's set to a type of flexible.
You will need to set the background of the Carousel to transparent...When I did that, it did not have the parallax effect.
Re: Universal Parallax
Tried that, still didn't workYou will need to set the background of the Carousel to transparent...
Re: Universal Parallax
What exactly does not work? Is there an error?
If you want my help then please share a demo so I can see what you have done.
If you want my help then please share a demo so I can see what you have done.
Re: Universal Parallax
There's no error but it doesn't have the parallax effect.
I'll send a demo project later.
I'll send a demo project later.
Re: Universal Parallax
I did a quick test and it works for me, are sure you have done all steps?
- add a layout grid
- set the background of the layout grid to universal parallax
- put the carousel inside the layout grid.
- set the background of the Carousel to transparent
- add a layout grid
- set the background of the layout grid to universal parallax
- put the carousel inside the layout grid.
- set the background of the Carousel to transparent
Re: Universal Parallax
Yes I tried to follow the steps. Would you mind posting your test project?
Re: Universal Parallax
I'm sorry, I did not save the project
But basically, I have just opened the mini template, added a layout grid at the top, then inserted a carousel and it worked.,
But basically, I have just opened the mini template, added a layout grid at the top, then inserted a carousel and it worked.,
Re: Universal Parallax
That didn't work for me either, I don't know why.
Anyway, for my current project I really want to have the full width and floating carousel which means parallax won't work with that, so I'm just going to not have that effect on the site.
Thanks for the suggestions.
Anyway, for my current project I really want to have the full width and floating carousel which means parallax won't work with that, so I'm just going to not have that effect on the site.
Thanks for the suggestions.
Re: Universal Parallax
What exactly does not work? What do you see? Where is the demo?That didn't work for me either,
If you place the Carousel in a layout grid then it is full width.for my current project I really want to have the full width and floating carousel which means parallax won't work with that, so I'm just going to not have that effect on the site.
The parallax effect will be part of the the layout grid, not the Carousel.
Re: Universal Parallax
Understood but I want to use the full width and floating carousel so I can have absolute positioning with text or other objects.
I thought it would just be a nice feature in the website but it's not critical so I'm not going to pursue it any further.
Thanks.
I thought it would just be a nice feature in the website but it's not critical so I'm not going to pursue it any further.
Thanks.
Re: Universal Parallax
Floating and fixed content do not go together. Fixed content will break the floating behavior of the layout.
If you place a Carousel inside a layout grid then it will still be full width and floating!I want to use the full width and floating carousel so I can have absolute positioning with text or other objects.
Re: Universal Parallax
If you are trying to re-create what you provided in your demo link, try this:
1. set up your carousel as full width and floating. I'm assuming it is at the top of the page like your demo link.
2. Open up an html box and set it to "between <head></head> tags" and enter the following CSS:
Change the ID of the carousel above to whatever the name of yours is.
See my demo here
1. set up your carousel as full width and floating. I'm assuming it is at the top of the page like your demo link.
2. Open up an html box and set it to "between <head></head> tags" and enter the following CSS:
Code: Select all
<style>
#wb_Carousel1{position:sticky;z-index:0;}
</style>
See my demo here
Re: Universal Parallax
Yes but I wanted full width and floating to use absolute positioning.
For the purposes of my current project that's more important than having the parallax effect.
For the purposes of my current project that's more important than having the parallax effect.
Re: Universal Parallax
Crispy that looks good I'll try it.
Re: Universal Parallax
Crispy yes that looks like it works..thanks!