Your program may have some bugs and it costs some time to reload the image.

解决方案 »

  1.   

    我查看地的正常啊。功能挺好的。。
    楼主好样的。颜色丰富点就更好了。。
    http://wellstyled.com/tools/colorscheme/index-en.html
      

  2.   

    1、没有提供源码,很难提供有效的建议
    2、另存http://bestscw.web9i.com/test/color.htm后,调色盘不能显示(虽然图片可另行下载)
    3、冷色区靠内位置有你说的现象,估计是计算坐标位置有错或计算颜色有错
      

  3.   

    在styl-2004-11-10.css中
    #wheelarea {
    BACKGROUND: url(wheel.gif); WIDTH: 232px; CURSOR: hand; HEIGHT: 232px
    }调色盘不能显示不能显示无法调试冷色区靠内位置有你说的现象,估计是计算坐标位置有错或计算颜色有错
    感觉在color_control.js
    以下代码有问题
    var dX = 20, dY = 20; function showHueInfo(e) {
    var a,x,y,h;
    getEvent(e);
    x = eX - dX - 115;//为什么要减dX y = eY - dY - 115;
    h = Math.round(((Math.atan2(-x,y) * 180/Math.PI) + 180) % 360);
    r = Math.sqrt(x*x + y*y);
    if (r>50) h = (Math.floor((h-7.5)/15 + 1) * 15) % 360; //为什么加一
    window.status = 'Hue: '+h+ '°';
    }
      

  4.   

    在color_control.js中
    将 var dX = 20, dY = 20;
    改为 var dX = 7, dY = 1; 应该基本准了