Example of putting a 3D-ish Photo on a Web Site


 
Mouse click (or touch on your smart phone) and drag for to experience the 3D-ish effect.
(You can pinch to zoom if it looks small on your phone.)



If you know how to edit web pages, you can add 3D-ish Photos to them.
I wrote this javascript file that does almost all the work.
The simplest way is to just include this file and add three lines to your page (like i did):

<body onload='set_up_3Dish_viewer("Marvin_3D-ish.jpg.Base64","3D-ish_1","320","480");'>
<script type="text/javascript" src="3D-ish_viewer_v1.js"></script>
...
<img id="3D-ish_1" name="3D-ish_1" width="320" height="480" border="0">

Note that the 3D-ish jpg has been Base64 encoded.
This seems to be unavoidable, as IE won't fetch binary data.
This simple version only handles one 3D-ish Photo per page.
Let me know if you need more than one or if you need help using this code.