Giter Site home page Giter Site logo

Comments (9)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
Thanks Hiren! I'll see it as soon as possible.

Original comment by [email protected] on 1 Mar 2012 at 4:59

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
This would be great, i am currently tweaking the code to see if I can fix it. 
I added jquery mobile and changed this :

this.canvas.addEventListener('touchstart', , false);
this.canvas.addEventListener('touchend', function(e){self.mouseUpHandler(e);}, 
false);
this.canvas.addEventListener('touchmove', 
function(e){self.mouseMoveHandler(e);}, false);

to this :
    $("#cv").bind('vmousedown', function(e){
        e.preventDefault();
        console.log("vmousedown");
        self.mouseDownHandler(e);}
    );
    $("#cv").bind('vmouseup', function(e){
        e.preventDefault();
        console.log("vmouseup");
        self.mouseUpHandler(e);}
    );
    $("#cv").bind('vmousemove', function(e){
        e.preventDefault();
        console.log("vmousemove");
        self.mouseMoveHandler(e);}
    );

It still does not seem to do anything


Original comment by [email protected] on 10 Aug 2012 at 11:41

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
I fixed it, update the event handlers to the touch ones as above and in 
"JSC3D.Viewer.prototype.mouseDownHandler", change this.buttonStates[e.button] 
to this.buttonStates[0]

Ideally I would like to have the pinch to zoom feature i'll see what I can do 
there

Original comment by [email protected] on 10 Aug 2012 at 12:02

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
This has been fixed by introducing in touch-based manipulation by dealing with 
both mouse events and touch events. It now runs well on touch devices.
Tested on Opera mobile and Safari mobile(simulator).

Original comment by [email protected] on 12 Oct 2012 at 11:45

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
[deleted comment]

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
tested on ipad2 (safari and dolphin) and is working nice for rotating the 
camera. 

Will be nice to support also zooming by pinch event.

http://stackoverflow.com/questions/11183174/simplest-way-to-detect-a-pinch

(I'll try to implement it asap)

Original comment by [email protected] on 13 Jul 2013 at 7:07

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
Jsc3d now already supports pinch zooming and other gesture-based control 
through jsc3d.touch.js.

Original comment by [email protected] on 8 Nov 2013 at 2:26

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
Hi! is jsc3d.touch.js yet to be released? Where could I get that file?

Original comment by [email protected] on 24 Nov 2013 at 11:25

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 20, 2024
It's not in any release yet. You can get it from the svn repository or the 
direct link: http://jsc3d.googlecode.com/svn/trunk/jsc3d/jsc3d.touch.js. Don't 
forget to download and use the latest edition of jsc3d.js as well: 
http://jsc3d.googlecode.com/svn/trunk/jsc3d/jsc3d.js.

Original comment by [email protected] on 29 Nov 2013 at 3:40

from jsc3d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.