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

tooltip jolt issue in MacOS Safari browser #59

Closed
raj2907 opened this issue Jun 17, 2013 · 7 comments
Closed

tooltip jolt issue in MacOS Safari browser #59

raj2907 opened this issue Jun 17, 2013 · 7 comments
Assignees

Comments

@raj2907
Copy link

raj2907 commented Jun 17, 2013

When the form first loads, and for a period afterwards, there are screen jolts each time a help icon is moused over. This issue is occurred only on MacOs Safari browser.

Below is the code i have used to open tool tip

$(img).opentip(title, { showEffect: 'blindDown', tipJoint: "top left", removeElementsOnHide: true, stem: true, target: true, tipjoint: ['center', 'top'], hideTrigger: "tip", hideTriggers: ["trigger", "tip"], showOn: "creation", hideOn: "mouseout", fixed: true, background: "rgb(234, 236, 240)", borderColor: "rgb(187, 187, 187)" });

please help me on this.

Regards,
Raj.

@enyo
Copy link
Owner

enyo commented Jun 17, 2013

Could you please post a screenshot and your MacOS + Safari version.
Thx

@ghost ghost assigned enyo Jun 17, 2013
@raj2907
Copy link
Author

raj2907 commented Jun 17, 2013

MacOs version:10.7.5
Safarai browser version: 6.0.4
screen shot 2013-06-17 at 4 11 04 pm

@enyo
Copy link
Owner

enyo commented Jun 17, 2013

What do you mean by screen jolt? Might it be caused by the tooltip sticking out of the browser window?

@raj2907
Copy link
Author

raj2907 commented Jun 18, 2013

No it's positioning correctly, but Screen flickers on every tool tip item mouse over.

@enyo
Copy link
Owner

enyo commented Jun 18, 2013

I'm really sorry but I have no notion of what could cause the behaviour you're describing (and I'm not quite sure what this behaviour concretely is).

Do you have a link where I could try it out?

@raj2907 raj2907 closed this as completed Jun 19, 2013
@raj2907 raj2907 reopened this Jun 19, 2013
@raj2907
Copy link
Author

raj2907 commented Jun 19, 2013

I have uploaded website page copy on the below link
globalpanda.versatile-soft.com/testtooltip.zip

Please to open the page in MacOs and mouse over the help icon, you will see page flickering.

@enyo
Copy link
Owner

enyo commented Jun 19, 2013

Ok, now I see what you mean.

This is a webkit bug, and is caused by webkit switching between gpu and cpu rendering (as far as I could figure out).

If you set those properties on the container form, it will force webkit to always render on the gpu which will prevent the flickering:

#aspnetForm {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@enyo enyo closed this as completed Jun 19, 2013
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

2 participants