Questions tagged [blink]

Blink is an open source rendering engine forked from WebKit. It is included in Google Chrome 28+ and Opera 14+. Blink includes a different multiprocess architecture than WebKit2, and the V8 JavaScript engine, rather than JavaScriptCore.

Blink is the rendering engine used by Chromium open source project. Blink, first announced in April 2013, is a fork of WebKit engine.

It is used in Chrome 28+, Opera 15+, Qt WebEngine and some Chromium-based browsers.

258 questions
10
votes
2 answers

Css fade-in-out blinking

I'm trying to make a div flash, but I don't want the text inside it to flash, just the button itself. I'm not sure how I can go around this. I hope this makes sense Can anyone help please? Here is the code: @-moz-keyframes blink {0%{opacity:1;}…
Nicole
  • 381
  • 2
  • 3
  • 10
9
votes
3 answers

eye blink detection for iphone sdk

Now that face detection is possible with ios 5, i am just wondering is it also possible to detect blinking eyes? I read the frameworks, but i just got methods for getting the position of eyes. Also, i have heard of OpenCV framework for iphone which…
mayuur
  • 4,736
  • 4
  • 30
  • 65
9
votes
4 answers

Make JFace Window blink in taskbar or get users attention?

I wonder someone has any idea how to solve this: In my Java Eclipse plugin there are some processes which take some time. Therefore the user might minimize the window and let the process run in the background. Now, when the process is finished, I…
Gnark
  • 4,080
  • 7
  • 33
  • 44
9
votes
3 answers

css3 animations hard blink (no fade inbetween frames)

trying to flash three elements in a row with css3 animations. i've got it running, but there is a fade for each frame and i'd like to remove it. ideally each element stays visible for 1s, then hides immediately. i've tried setting the animation with…
technopeasant
  • 7,809
  • 31
  • 91
  • 149
8
votes
2 answers

What is the engine of Android native browser?

What is the engine of Android native browser? Wiki says that Android used WebKit before 4.4 and Blink for 4.4 and further versions. Is it right statement? Thanks in advance.
Fox Amadeus
  • 196
  • 1
  • 1
  • 11
8
votes
2 answers

Text blink from one color to another css or jquery

I would want to blink a text with two different colors: For example: blinking a text white-green-white-green-white-green I don't mind if jQuery or CSS.
Za7pi
  • 1,338
  • 7
  • 22
  • 33
7
votes
0 answers

Why does changing transform from JavaScript cause a Recalculate Style event, but a CSS animation does not?

Problem/Question: A CSS animation is able to smoothly change the transform of an element without triggering Recalculate Style or Update Layer Tree. Why can't we do the same from JavaScript, so that we can smoothly change the transform in response to…
7
votes
3 answers

How to make UIImageView blink/flash animation infinite?

I'm trying to achieve a blinking/flashing effect with some duration for a UIImageView in my iOS app. I want the UIImageView to blink/flash with alpha, not with different images. I have another code-snippet from an android app which sort of describe…
Logi95
  • 169
  • 1
  • 9
7
votes
1 answer

Why don't email clients use modern rendering engines?

It's 2017 and we are still stuck with HTML tables to create rich emails. Why? It seems reasonable to leverage the hard work behind the modern browser engines (ie. blink), when all you want is to render an HTML document properly.
user5510778
7
votes
2 answers

HTML5 Canvas blinking on drawing

I'm beginning with an isometric game, and my canvas is blinking(Not in IE) when draws all the parts of the ground. When I set fps to 20 or less, the blinking stops. How can I solve that? Any ideas? var camerax = 300, cameray = 100; var fps =…
Marcilio Leite
  • 1,247
  • 2
  • 14
  • 17
6
votes
0 answers

Android WebView play video error blink black screen

Hi i am writing an application from webview and when playing video in webview sometimes an error occurs and the phone screen starts flickering white-black. watch the screen recording https://youtu.be/ST8fc0w_Um8 and in the log android…
new user
  • 61
  • 3
6
votes
1 answer

Inconsistent select() bahavior for input when parent has user-select: none (chromium-based browsers)

On the gif, you can see input with consistent select() behavior (content selected on every click) and second input where every 2nd click fails to select anything I have global styles historically added to the project * { user-select:…
godblessstrawberry
  • 4,556
  • 2
  • 40
  • 58
6
votes
5 answers

Cursor in contenteditable not behaving properly in Chrome

I have an issue where the cursor jumps to wrong place when user clicks inside of contenteditable div but outside of the actual text. It seems to be a problem only in newer versions of Chrome (and also Opera): coincidentally I tested my example in an…
HelgeFox
  • 349
  • 2
  • 13
6
votes
1 answer

In Chrome’s user agent stylesheet, why use "-webkit-margin-before" et al instead of just "margin-top" et al?

-webkit-margin-{before,after,start,end} can be overriden by margin-{top,bottom,left,right} respectively. Why does Chrome’s user agent stylesheet not just use the standard margin- declarations?
user1082754
6
votes
4 answers

Text doesn't wrap properly between elements having white-space: nowrap

If I give all the children of an element white-space: nowrap, white space doesn't break between the elements where it should in webkit (and blink): jsfiddle.net/VJyn2 .pairs { width: 180px; overflow: hidden; } .pairs > span { …
gilly3
  • 87,962
  • 25
  • 144
  • 176
1
2
3
17 18