Guest User

Untitled

a guest
Mar 8th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. setTimeout((function(obj) {
  2. var obj = obj;
  3. var opacity = 0;
  4. return function() {
  5. if (opacity < 100) {
  6. obj.style.MozOpaticy = opacity;
  7. opacity += 5;
  8. setTimeout(arguments.callee, 100);
  9. }
  10. }
  11. })(obj), 0);
Add Comment
Please, Sign In to add comment