Page 1 of 1

Dynamic-to-top thing

Posted: 02 Jan 2012, 09:45
by tschortsch
Hey!

I'm wondering how to make this cool "dynamic-to-top" thing you are using on your website (bottom right) which allows you to navigate quickly back to top of the page when scrolling...

I only have small CSS skills, so I would need some help to create such a thingy! :D
dynamic-to-top.png
dynamic-to-top.png (808 Bytes) Viewed 4623 times
I hope this is the right thread to post such a matter.

Thanks!

Re: Dynamic-to-top thing

Posted: 02 Jan 2012, 09:58
by tschortsch
I'm sorry!

I should have used Google, it's a WordPress plugin, right?! Well, there is quite a lot stuff to learn from... :)

Please delete!

Re: Dynamic-to-top thing

Posted: 02 Jan 2012, 12:04
by mjau-mjau
Essentially, its just some jQuery, and was converted to a Wordpress plugin:
http://www.mattvarone.com/web-design/ui ... ry-plugin/

On another website, we have a simple jQuery javascript that you can just trigger from your own button that would need to be palced with your own html+css:
Code
$('#go-top').click(function () {
		$('body,html').animate({
			scrollTop: 0
		}, 800, "easeInOutCubic");
		return false;
	});

Re: Dynamic-to-top thing

Posted: 03 Jan 2012, 04:22
by tschortsch
Thank you for your help!

I'm running a MyBB forum and already found a nice plugin for that!