redraw.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. (function redraw () {
  2. console.log(0);
  3. var state = _.state()
  4. , canvas = state['canvas']
  5. , context = canvas.getContext('2d')
  6. , img = state['img']
  7. , f = state['frame'];
  8. var x1 = Math.random() * img.width
  9. , y1 = Math.random() * img.height
  10. , x2 = Math.random() * img.width
  11. , y2 = Math.random() * img.height
  12. , w = x2 - x1
  13. , h = y2 - y1
  14. context.globalAlpha = $.state.blend();
  15. //context.translate(img.width / 2, img.height / 2)
  16. //context.rotate(Math.random() * Math.PI)
  17. if (f % 2 === 0) context.drawImage(img,
  18. x1, y1, w, h,
  19. 0, 0, canvas.width, canvas.height);
  20. //context.setTransform(1, 0, 0, 1, 0, 0);
  21. //if (f % 5 === 0) context.drawImage(img2,
  22. //-x1 * canvas.width / w,
  23. //-y1 * canvas.height / h,
  24. //img.width * canvas.width / w,
  25. //img.height * canvas.height / h);
  26. //context.globalAlpha = 1
  27. //context.fillStyle = 'black'
  28. //var data = context.getImageData(0, 0, canvas.width, canvas.height)
  29. //for (var i = 0; i < data.data.length; i++) {
  30. //var pixel = data.data[i];
  31. ////pixel[2] = pixel[1]//;Math.pow(pixel, 1.5)
  32. //}
  33. //context.putImageData(data, 0, 0)
  34. //for (var y = 0; y < canvas.height; y++) {
  35. //if (y % 5 === 0) {
  36. //context.fillRect(0, y, canvas.width, 1)
  37. //}
  38. //}
  39. _.state.frame.set(f+1)
  40. window.requestAnimationFrame(_.redraw)
  41. })