Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

为啥 在 pressMove 方法中 没有做 横向范围判断? #16

Open
twoer opened this issue Dec 27, 2017 · 0 comments
Open

为啥 在 pressMove 方法中 没有做 横向范围判断? #16

twoer opened this issue Dec 27, 2017 · 0 comments

Comments

@twoer
Copy link

twoer commented Dec 27, 2017

pressMove 方法

if((cr.left + evt.deltaX <= 0) && (cr.right + evt.deltaX >= self.width)){ self.img.translateX += evt.deltaX; }

->

var boxOffX = (document.documentElement.clientWidth - self.width)/2;
if((boxOffX - cr.left - evt.deltaX >= 0) && (cr.right + evt.deltaX - boxOffX>= self.width)){ self.img.translateX += evt.deltaX; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant