flicker

CSS3 Transform affecting other elements with chrome/safari

血红的双手。 提交于 2019-11-26 09:48:06
问题 I have an issue where my css3 transformations are effecting other elements on the page and even causing them to sort of flicker. I saw another post about this but they didn\'t have a resolution with the issue. http://scosha.mybigcommerce.com/w107b/ when you scroll over the navigation you see an animated css3 transformation. It works fine in firefox without flickering but with chrome and safari the effect is very obvious, you see it in the drop down menu items as well as the footer text. 回答1:

Android VideoView black screen

心已入冬 提交于 2019-11-26 06:28:48
问题 I have been looking for a way to get rid of the nasty black initial screen on a VideoView before the start() method is run. I have tried with background image on the widget but it doesnt work as expected at all. I have also tried putting an image of the first frame in the video on top of the VideoView and hiding it after the stars() method. Adding an onPrepared listener to start the video and then hide the image. This works but there is a horrible flicker in the transition and i don\'t know

TLabel and TGroupbox Captions Flicker on Resize

…衆ロ難τιáo~ 提交于 2019-11-26 06:28:01
问题 So, I have an application that loads different plugins and creates a new tab on a TPageControl for each one. Each DLL has a TForm associated with it. The forms are created with their parent hWnd as the new TTabSheet. Since the TTabSheets aren\'t a parent of the form as far as VCL is concerned ( didn\'t want to use dynamic RTL, and plugins made in other languages ) I have to handle resizes manually. I do this like below: var ChildHandle : DWORD; begin If Assigned(pcMain.ActivePage) Then begin

Fixed attachment background image flicker/disappear in chrome when coupled with a css transform

那年仲夏 提交于 2019-11-26 06:05:54
问题 I am currently doing a parallax website theme. The background images need to be attached as fixed for certain \'div\'s and \'section\'s to avoid jquery indulging in everything. The problem was the background images of the tags below any animated item disappeared while the transformation is being done, only on Google Chrome. Remedy? 回答1: This has been a very common unsolved mystery. Recently I had the same problem, and '-webkit-backface-visibility: hidden', proved to be less than useless (on

How to double buffer .NET controls on a form?

走远了吗. 提交于 2019-11-26 03:16:10
问题 How can I set the protected DoubleBuffered property of the controls on a form that are suffering from flicker? 回答1: Here's a more generic version of Dummy's solution. We can use reflection to get at the protected DoubleBuffered property, and then it can be set to true . Note : You should pay your developer taxes and not use double-buffering if the user is running in a terminal services session (e.g. Remote Desktop) This helper method will not turn on double buffering if the person is running

iPhone WebKit CSS animations cause flicker

六眼飞鱼酱① 提交于 2019-11-26 02:16:00
问题 This is the iphone site: http://www.thevisionairegroup.com/projects/accessorizer/site/ After you click \"play now\" you\'ll get to a game. The guns will scroll in. You can scroll the purse and accessories up and down. You can see that when you let go they snap into place. Just as that snap happens, there\'s a flicker that occurs. The only webkit animations I\'m using are: \'-webkit-transition\': \'none\' \'-webkit-transition\': \'all 0.2s ease-out\' \'-webkit-transform\': \'translate(XXpx,

How to fix the flickering in User controls

谁说胖子不能爱 提交于 2019-11-25 23:59:13
问题 In my application i am constantly moving from one control to another. I have created no. of user controls, but during navigation my controls gets flicker. it takes 1 or 2 sec to update. I tried to set this SetStyle(ControlStyles.OptimizedDoubleBuffer, true); or SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); SetStyle(ControlStyles.DoubleBuffer, true); but it didn\'t help... Each control has same background image with different controls. So what is