Giter Site home page Giter Site logo

Comments (4)

deepfriedmind avatar deepfriedmind commented on June 27, 2024

Agreed. Would be great if this could be fixed somehow.

from canvasloader.

rozzy avatar rozzy commented on June 27, 2024

Hey guys. I was trying to resolve this issue for an hour and after several unsuccessful attempts i found a very funny, but working solution. Instead of playing with canvas width and height, i am trying to scale it:

var cl = new CanvasLoader('analysis_loader'),
    diameter = 44;
cl.setColor('#ffffff');
cl.setShape('spiral');
cl.setDiameter(diameter);
cl.setDensity(149);
cl.setRange(0.6);
cl.setSpeed(1);
cl.setFPS(60);
if (window.devicePixelRatio) {
  cl.setDiameter(diameter * 2);
  $('canvas').css({
    '-webkit-transform': 'scale(0.5)',
    '-webkit-transform-origin': 'top left',
    '-moz-transform': 'scale(0.5)',
    '-moz-transform-origin': 'top left',
    'transform': 'scale(0.5)',
    'transform-origin': 'top left',
  });
};
cl.show();

It works fine in Mac OS X browsers at latest MBPr: Safari, Firefox, Chrome, Yandex.Browser and latest Opera. Also it must be working at iOS retina devices.

I am not sure about windows retina devices, but if anybody have one, please reply to this message with feedback (work/not work).

Cheers from http://pocketdj.ru :-)

from canvasloader.

robpataki avatar robpataki commented on June 27, 2024

Hey rozzy! Thank you very much for your effort, much appreciated! I have been working on an updated version of CanvasLoader and it will be shipped very soon (just have been very busy with client work lately). In the new version this issue has been addressed already, please sit tight, updates are coming soon! Thank you very much for everyone for being patient and giving feedback on the issues, many thanks!

from canvasloader.

artemgordinskiy avatar artemgordinskiy commented on June 27, 2024

Hey Robert,
I guess you don't have the time to fix this issue right now. Any way I could help?

from canvasloader.

Related Issues (20)

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.