There's an artist i saw on the most recent recap named Goldo_O and he posted a turntable render of his character work:
http://www.ddez.fr/turntable/?turnt=TinyTina_Cookies
And i was wondering how he got his model to become a live turntable render like that?
i tried checking
www.ddez/fr but i had no idea what i was looking at :P Anyone know how he's got this?
i remember theres another site that does this similarly but i just wondered how he specifically got this to work because i saw that in the page source it was just loading multiple images?
Replies
I have something similar on my portfolio. If you're crafty you can 'borrow' it and implement it into your website. I can't help you there because my brother coded mine!
ooooo cool, is there maybe keyword i can search/link to approach coding it?
But you can right click > view source on ether website and just copy their source.
And there is this http://jquery.vostrel.cz/reel
var pictures = ["url1","url2",...]; var frame; var clickStart; var currentPic; var offset; window.onload = function(){ var preloader = new Preloader(); preloader.load(pictures) preloader.addEventListener("complete", onComplete); frame = document.getElementByID("frame"); frame.className = "loading"; } function onComplete(e){ frame.className = "ready"; currentPic = 0; frame.style.background-url = "url("+pictures[currentPic]+")"; frame.addEventListener("mousedown", onMouseDown); } function onMouseDown(e){ window.addEventListener("mouseup", onMouseUp); window.addEventListener("mousemove", onMouseMove); clickStart = e.x; } function onMouseMove(e){ offset = (e.x-clickStart) % rotFactor; var target = (currentPic + offset) % pictures.length; frame.style.background-url = "url("+pictures[target]+")"; } function onMouseUp(e){ window.removeEventListener("mouseup", onMouseUp); window.removeEventListener("mousemove", onMouseMove); currentPic += offset; offset = 0; }I do this stuff for my day job ATM so if there's any questions about intention feel free to ask. Libraries are always a way to do it if you don't 'get' the code.