Not really. I'm just trying to use the wheel; it's other people that have implemented it wrong.
Found a bodge. Basically create a DIV at 0,0 and then call its getClientBoundingRect() and measure the distance. Then the error cancels itself out. Phew.
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on "HTML: Translating touch events to relative"
Collapse
-
I suspect you are trying to reinvent the wheel.
Try looking at a library:
Hammer.JS - Hammer.js
QuoJS
Daniel Glyde: TouchIt: jQuery Plugin for Touch events
Leave a comment:
-
HTML: Translating touch events to relative
This is one of those "I can't believe it's this hard" problems.
I need to translate a mouse press or touch on a web page to a div's local coordinates. Any sensible system would do this for you, but that's too simple for the folks behind the HTML standards. After a lot of faffing, I've come up with this (ignoring x for brevity):
If I have a DIV that starts 300 pixels down the page and I touch its top left, e.y = 300 and r.top is 300, and so it works. If the window is scrolled down so my div is at the top of the window then r.top is now 0 because it's offset by the scroll position (bizarrely - I don't know why anybody would think that's how it should be) which is why you also need to subtract the scroll position.Code:function onTouchStart( ev ) { e = new Object; e.y = ev.touches[0].pageY; // translate r = rootDiv.getBoundingClientRect(); e.y -= r.top; e.y -= window.scrollY; }
This is fine. Until I zoom in on Android (Chrome).
Once zoomed if I scroll so my div is at the top r now doesn't take into account the scroll position, so that r.top is 300 and scrollY is 300 and I therefore end up 300 pixels out.
So how the ***** am I meant to make that work? Is there some alternate strategy?
Any insights?Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Loan charge recall issue returns, with new demands making UK contractors ‘half-suicidal’ Today 03:58
- AI interviews are here. Here's how IT contractors can ace them Yesterday 06:53
- Closing your limited company isn't failure. It's just the end of a chapter. Jun 8 05:00
- Young people not in education, employment or training isn’t a contractor’s problem. It’s a problem for us all Jun 5 05:26
- How does HMRC’s forward interest change benefit contractors? Jun 4 04:22
- What are Bills of Exchange, and should HMRC's alert worry umbrella contractors? Jun 3 04:09
- Bills of Exchange fail to avoid new umbrella company rules, says HMRC Jun 2 05:32
- Is permanent employment still the safer bet? Yes, but it's a lot less safe than it used to be. Jun 1 04:34
- Is your Director’s Loan Account (DLA) a target of HMRC’s closer look at close companies? May 29 04:45
- Is your Director’s Loan Account (DLS) a target of HMRC’s closer look at close companies? May 29 04:45

Leave a comment: