rstacruz / jquery.transit

Super-smooth CSS3 transformations and transitions for jQuery
http://ricostacruz.com/jquery.transit
7.3k stars 864 forks source link

Incorrect antialias fix on http://ricostacruz.com/jquery.transit/ #174

Open samtiffin opened 10 years ago

samtiffin commented 10 years ago

Hi,

The very last "Recipe" on http://ricostacruz.com/jquery.transit/ is incorrect. It reads:

.box {
  -webkit-transition: translate3d(0,0,0);
}

While it should actually say:

.box {
  -webkit-transform: translate3d(0,0,0);
}

As per the article linked against that recipe (http://davidwalsh.name/translate3d).

Apologies if this isn't the best place for this issue.