I love it too
@phenomlab said in Blinking text Effect:
Has that “broken neon light” look that you see in films.
It’s exactly that, kind of old neon signs of bar or pubs a bit cyberpunk too 😉
Have you ever tried to target dynamic elements such as as Tooltips under bootstrap
only to find that they disappear when you try to inspect them? You’re not alone.
Fortunately (and inspired by this post), there is a workaround in case you find yourself in a similar boat.
You locate the popover
element you’d like to change, right-click then select Inspect Element
and then element itself disappears - along with any hope of you finding the related CSS.
We need to use a bit of ingenuity here. This is where the browser (in the case of Webkit, such as Google Chrome etc) debug facilities come in handy.
console
tabsetTimeout(function(){debugger;},5000);
Note that 5000
is adjustable (and the inspiration for the Mission: impossible - Rogue Nation sequence ) It should look like the below - essentially,
5000
is 5 seconds… Now you see (hopefully) the paradigm.
Customise as necessary
Nice. Very good tips Mark