Forum Moderators: open
Did that make sense? - I wish i could draw you a picture.
Ta.
I want to place the user in the middle of a mahusive abstract webpage and let them "wander". this could be done using 2 scrollers but i want it to feel like a 3D experience where navigation is warped from the norm. I cant say much more than that really. The site might well turn out to be a turkey anyway.
>> I guess if you did a 100% flash site (duh) you could do it.
I dont have access to flash but a good suggestion though. Ta.
html{direction:rtl;}
body{direction:ltr;}
(haven't tried the syntax)
now, with clever wrapping of inline frames, you could at least simulate left and right scrollbars.
Or with plain HTML 4:
<body dir="rtl">
<div dir="ltr">
Content here...
</div>
<body>
It would also require some pretty advanced DHTML. Flash is probably your most direct route to achieving warped navigation (though mostly this is accomplished by accident;)).
Best of luck, sounds like a fun project.
I prefer working in HTML to maintain cross browser and platform compatibility. I am I right in thinking so long as the code is pure I can reach 'all' users?
Is there code that does this but keeps the right hand one as well
DrOliver was suggesting one possibility when he said "with clever wrapping of inline frames". You could have a page with a normal right-hand scrollbar, and inside that you'd put an iframe with the scrollbar swapped to the left. That way you've got both. But I really don't know how you'd get the outside scrollbar to have any effect on the contents of the iframe. I'm not even sure it can be done. If you do find a way, please let us know!