Scroll through scenes in Hype

You will need the following script: anyScrollScene And this is the code mentioned in the tutorial: When you only want to scroll down: anyScrollScene(hypeDocument,"enable",0.5,"start"); When you only want to scroll in both directions: anyScrollScene(hypeDocument,"enable",0.5); When you only want to scroll … Read more…

Simple Muse responsiveness

As many of us realize, responsiveness in Muse can be a bitch. But below you will find a simple technique for the desperate among us! <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <style> body{ overflow-x: hidden!important; padding-bottom: 0; max-height:0px; } #page{ transform-origin:0 0; margin:0; overflow:hidden; … Read more…

Adding password protection to a page/scene in Hype

So you have a project on your website that might be a bit delicate and you want to add a simple password authentication to a specific scene?
Then I have an solution for you.
It’s a very simple solution, so it’s not the most secure. People with some basic understanding of HTML are able to go around it.
But, for most purposes, this should do the trick 🙂

Read more…