extjs - how to do carousel image pinch in pinch out(zoom in zoom out) in sencha touch -
I have a carousel in my application, this application is done using Sinicha Touch 2. According to my requirement, I have to do pinch (zoom out zoom out) in the carousel image . Can I get it in Sincha Touch 2? If so, how do I search, but I did not get the information about this carousel in zoom out. Can anyone tell me how to do this?
Currently there is no pin-zoom built-in functionality in the Touch Touch 2, but you can use these events: Pinch start , Pinch and Pinchand to Ext.dom.Element
We say you have an image inside A container:
var c = Ext.create ( 'Ext.Container', {...});
You can add listeners to pinpoint incidents:
c.element.on ('pint-start', function (e ) {// ... },this); C.element.on ('pinch', function (e) {// ...}, this); C.element.on ('pinchend', function () {// ...}, this);
I have been able to do some work, but it is not good yet
-
Hope it helps < / P>
Comments
Post a Comment