GithubHelp home page GithubHelp logo

blink-polyfill's Introduction

blink-polyfill

Blinking has been a staple of innovation since the dawn of human culture and now they are trying to take it away.

Timeline

  • 1994: Papa Netscape releases 1.0 with the blink tag
  • 1994-2013: The internet thrives in its blinking glory
  • 2012-2013: Opera, Chrome, IE, and Firefox completely remove the blink tag. The web weeps.

The Outrage

OaklawnM4M:

I really hate companies that brag about how compliant they are when in reality they don't give a damn whether you like their offerings or not. I'm so looking forward to the release of IE version 9 made by the same company that makes the operating system for the computer that it's running on. When it comes to HTML, the programmer isn't supposed to pick and choose what they want to support/comply with cuz if they do then standards are no longer standard. PERIOD
And don't try to use the excuse of "Well it's FREE and you didn't pay for it" cuz that dog don't hunt either. All the ajax and java in the world isn't an excuse to eliminate a feature that's 25 years old. But while we're at it, why don't we start eliminating words from the dictionary too.. Let's start with the word "screwed" so nobody will know that it's being done to them.. Or how about "incompetent" then nobody will ever know what an idiot you are.

somebodystolefatboy:

Well, you <blink> haters might be singing a different tune if you had Ebay morons giving you negative feedback because they cannot or will not actually read the item description. <blink on!>

drewying:

Fare well old friend. My high school memories of webrings would not be the same without you.

The Fix

Don't let these "standards" punks steal the web. Place this CSS on your page today.

@keyframes "blink" {
 0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     filter: alpha(opacity=100);
   	opacity: 1.0;
 }
 50% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   	filter: alpha(opacity=0);
   	opacity: 0.0;
 }
 100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   	filter: alpha(opacity=100);
   	opacity: 1.0;
 }

}

@-moz-keyframes blink {
 0% {
   filter: alpha(opacity=100);
   opacity: 1.0;
 }
 50% {
   filter: alpha(opacity=0);
   opacity: 0.0;
 }
 100% {
   filter: alpha(opacity=100);
   opacity: 1.0;
 }

}

@-webkit-keyframes "blink" {
 0% {
   filter: alpha(opacity=100);
   opacity: 1.0;
 }
 50% {
   filter: alpha(opacity=0);
   opacity: 0.0;
 }
 100% {
   filter: alpha(opacity=100);
   opacity: 1.0;
 }

}

@-ms-keyframes "blink" {
 0% {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1.0;
 }
 50% {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0.0;
 }
 100% {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1.0;
 }

}

@-o-keyframes "blink" {
 0% {
   filter: alpha(opacity=100);
   opacity: 1.0;
 }
 50% {
   filter: alpha(opacity=0);
   opacity: 0.0;
 }
 100% {
   filter: alpha(opacity=100);
   opacity: 1.0;
 }

}

blink {
	-webkit-animation-name: blink;
	-moz-animation-name: blink;
	-ms-animation-name: blink;
	-o-animation-name: blink;
	animation-name: blink;

	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;

	-webkit-animation-timing-function: steps(1);
	-moz-animation-timing-function: steps(1);
	-ms-animation-timing-function: steps(1);
	-o-animation-timing-function: steps(1);
	animation-timing-function: steps(1);
	-webkit-animation-duration: 1s;
}

Bitdeli Badge

blink-polyfill's People

Contributors

bitdeli-chef avatar mathiasbynens avatar yocontra avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.