Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can i implement smooth scrolling. #14

Open
Randore opened this issue Sep 12, 2014 · 7 comments
Open

How can i implement smooth scrolling. #14

Randore opened this issue Sep 12, 2014 · 7 comments

Comments

@Randore
Copy link

Randore commented Sep 12, 2014

Hi, how can we implement something like this (smooth scroll on arrow hover <-- --> )
http://www.clholloway.co.za/

I tried to use that plugin but jInver uses fixed slides may be that is the reason i am not able to fix it, any help would be greatly appreciated.

@pixxelfactory
Copy link
Owner

Hi, you could do something like this:
1.) Create a new dom-element for implementing scrolling, ex.:

Scroll on me

2.) Then tell this element to scroll when the user hovers it:
var timer = false;

$('.fix').on('mouseenter', function(e) {
    timer = window.setInterval(function() {
    var scrollTop = $('html, body').scrollTop() + 20;
    console.log(scrollTop);
    $('html, body').animate({'scrollTop': scrollTop}, 0);
    }, 30);
}).on('mouseleave', function(e) {
    window.clearInterval(timer);
});

You can extend this example by implementing check if the user reached the end of the page, or, if you want two arrows, one for up and one for down, add a direction flag variable.

Let me know if this did it or you need more help!
Best regards

@Randore
Copy link
Author

Randore commented Sep 13, 2014

Hey thank you, I'll check the code.

However I would like to make a few notes on features request.

  1. Let users to create scenes wrapped inside stage Div.
  2. In each scene, we can animate parallax elements with background images.
  3. Users can use background parallax as you showed in the example files, unless there are no elements in a scene to be animated.
  4. animations frame works like Animo.js or http://ricostacruz.com/jquery.transit/ to build custom animations.

Onscroll if the object is in view-port addClass animate to animate particular element. (user can write their own csss animations).

<div class="fly-left">this is user defined element </div>

When it's in view-port add class to animate it.

<div class="animate fly-left">object animated </div>

example:

<div id="stage">
<div class="scene0">
<div class="bg-scene1>
<img src="example1.jpg" data-speed="1000" data-name="scroll">
<img src="example2.jpg" data-speed="1000" data-name="scroll">
</div>
<div class="contents">
<h2>Some text contents to scroll over bg-scene1 parallax</h2>
</div>
</div>

<div class="scene1">
<div class="bg-scene1>
<mg src="example1.jpg" data-speed="1000" data-name="scroll">
<img src="example2.jpg" data-speed="1000" data-name="scroll">
</div>
<div class="contents">
<h2>Some text contents to scroll over bg-scene1 parallax</h2>
</div>
</div>

I hope these options will be useful and make jInvert a complete framework for HoriztParallax.

@Randore
Copy link
Author

Randore commented Sep 13, 2014

we should have function like onScroll scene-complete(), onSceneLoad(), onSceneCompletion() so on

@pixxelfactory
Copy link
Owner

Hi, thanks for your opinion and suggestions,
the first thing however will be to implement the dynamic menu (to let users jump automatically to a certain slide without having to set the waypoints manually) =)
Regards

@nag-uf
Copy link

nag-uf commented Sep 26, 2014

How to enable smooth scroll across all the browsers? The script has little lag while scrolling the page using mouse and the page doesn't look like smooth scroll enabled.

@pixxelfactory
Copy link
Owner

I've seen smooth scrolling in other scripts done with css3 + js-delay, so that you scroll down with the mouse and afterwards it starts scrolling via css-transitions, but it is quite laggy, obviously also smoother.
In wich browser on wich Os have you seen noticable lags?

@nag-uf
Copy link

nag-uf commented Sep 26, 2014

I observed it on Windows7 OS, google chrome browser. I will check it with css3 + js-delay. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants