Scroll Down arrow on a FullScreen page
-
Hey!
Please use "browser height for row height" and position a text at the bottom like here:
http://laytheme.com/documentation.html#use-browser-height-for-row-heightYou can use right-click -> "space bottom" to position that text a bit :D
Then in the gridder mouseover over that text and click the "class" button.
Enter: fp-godownThis works with fullscreen slider addon v. 1.3.1 and later
-
Hi Armin,
thanks for the quick reply!
Would you help me setting up something more similar to this:
http://webdesignbird.com/blog/divi-theme-css-improvements-tips-modifications
OR
http://codepen.io/shakdaniel/pen/JoKOQx
I just need an icon pointing down, that would disappear when user scrolls down.
(By the way, I also tried your solution for Enrico, and the cursor changes however the page doesn't scroll down on click.)
Thanks a lot!
-
Enter this in "Custom CSS for desktop version":
.icon-scroll{ cursor: pointer; } .icon-scroll, .icon-scroll:before{ position: absolute; left: 50%; } .icon-scroll{ width: 40px; height: 70px; margin-left: -20px; top: 50%; margin-top: -80px; box-shadow: inset 0 0 0 1px #fff; border-radius: 25px; } .icon-scroll:before{ content: ''; width: 8px; height: 8px; background: #fff; margin-left: -4px; top: 8px; border-radius: 4px; animation-duration: 1.5s; animation-iteration-count: infinite; animation-name: scroll; } @keyframes scroll { 0% { opacity: 1; } 100% { opacity: 0; transform: translateY(46px); } }
In your project, insert a text element like here: http://laytheme.com/documentation.html#use-browser-height-for-row-height
Don't write anything into the text, but open the code editor with the "<>" button and enter:<div class='icon-scroll'><div/>
Then in the gridder mouseover over that text and click the "class" button.
Enter: fp-godown -
Hi Armin,
the script is not really reacting. Could you have a quick look pls here:
http://plane-site.com/projects/woha/
Thx!
Tom
-
@arminunruh Hello.
This works well for me. Is there also a function the other way round? I use this to hide the project-arrows and the main menu when I scroll down inside a magnetic fullscreen slide. But I need to show those elements again when I slide up back to the page head. Any way to do that?
Thank you!
Arne -
I just did a fullscreen slider update 1.3.1. Please update to that version. Then give your element in the gridder a class of "fp-godown" (without ""). You can get rid of the class "fullpage-godown" that you entered before.
Go to "lay options" -> "custom css & html" -> "custom head content"
Then add:
<script> jQuery(window).on('fpOnLeave', function(event, data){ console.log('event', event); console.log('data', data); if(data.index == 1){ jQuery(".fp-godown").fadeOut(); } //in case you want to fade it in when coming back to first slide if(data.nextIndex == 1){ jQuery(".fp-godown").fadeIn(); } }); </script>
@ArneRobot
Please see the example here :) -
@arminunruh Thanks a lot Armin! That worked like a charme!
-
@arminunruh Now I see why it's not working! I don't have a Full Screen Slider! Anyway around to do it without that add-on?
Thanks a lot!
-
^^
with jquery you can animate scroll like this. This needs a class of "clickme" on your element:
<script> jQuery(document).on("click", ".clickme", function(){ jQuery("html, body").animate({ scrollTop: window.innerHeight }, 600); }) </script>
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it