在jQuery iocurve中创建音调曲线UI组件

  • 源码大小:543.81KB
  • 所需积分:1积分
  • 源码编号:19JP-3789
  • 浏览次数:971次
  • 最后更新:2023年07月23日
  • 所属栏目:图表
本站默认解压密码:19jp.com 或 19jp_com

简介

iocurve是一个完全可配置的jQuery插件,用于创建Photoshop和Lightroom风格的色调曲线UI,您可以通过鼠标拖动在给定的值范围内调整点。

更多功能:

  • 自定义曲率。
  • 自定义网格样式。
  • 条形图(柱形图)。
  • 自定义绘图图。
  • 自定义直方图。
  • 自定义连接线。

如何使用它:

1.创建一个容器来容纳色调曲线UI。

  1. <div class="iocurve"></div>

2.下载zip并在加载jQuery库后加载iocurve插件的缩小版。

  1. <script src="/path/to/cdn/jquery.min.js"></script>
  2. <script src="/path/to/dist/jquery.iocurve.min.js"></script>

3.调用容器元素上的函数,生成基本的音调曲线UI。

  1. $(function(){
  2. $('.iocurve').iocurve();
  3. });

4.自定义色调曲线UI。所有可能的默认选项:

  1. $('.iocurve').iocurve({
  2.  
  3. // input/output value range
  4. x: [0, 255],
  5. y: [0, 255],
  6.  
  7. // decomposition width
  8. dx: 1,
  9.  
  10. // Y axis
  11. y0: 0,
  12.  
  13. // curvature
  14. curvature: 0.3,
  15.  
  16. // CSS class
  17. className: '',
  18.  
  19. // CSS styles
  20. css: {
  21. position: 'relative',
  22. margin: '20px'
  23. },
  24.  
  25. // canvas styles
  26. canvas: {
  27. height: '100%',
  28. css: {
  29. display: 'block',
  30. boxShadow: '0 0 3px #000'
  31. },
  32. fillStyle: '#fff'
  33. },
  34.  
  35. // grid options
  36. grid: {
  37. visible: true,
  38. strokeStyle: 'rgba(0, 0, 0, 0.2)'
  39. },
  40.  
  41. // anchor options
  42. anchor: {
  43. points: [ [0, 0], [255, 255] ],
  44. tagName: 'a',
  45. className: 'anchor',
  46. css: {
  47. position: 'absolute',
  48. display: 'block',
  49. width: 18,
  50. height: 18,
  51. borderRadius: '50%',
  52. border: '1px solid rgba(0, 0, 0, 0.5)',
  53. background: '#fff',
  54. boxSizing: 'border-box',
  55. cursor: 'move',
  56. transform: 'translate(-50%, -50%)'
  57. }
  58. },
  59.  
  60. // bar styles
  61. bar: {
  62. visible: true,
  63. fillStyle: {
  64. positive: 'rgba(0, 100, 70, 0.2)',
  65. negative: 'rgba(150, 30, 70, 0.2)'
  66. }
  67. },
  68.  
  69. // plot diagram styles
  70. plot: {
  71. visible: false,
  72. strokeStyle: '#f00'
  73. },
  74.  
  75. // histogram styles
  76. histogram: {
  77. data: null,
  78. fillStyle: '#ddd'
  79. },
  80.  
  81. // connection line styles
  82. controlPoint: {
  83. visible: false,
  84. strokeStyle: '#00f'
  85. }
  86. });

5.事件处理程序。

  1. var $curve = $('.iocurve').iocurve(option);
  2.  
  3. $curve.on('anchor', function(ev, anchor){
  4. // anchor.element anchor DOM element
  5. // anchor.kind 'new'|'move'|'remove'
  6. // anchor.x coordinate X
  7. // anchor.y coordinate Y
  8. });
  9.  
  10. $curve.on('output', function(ev, data){
  11. console.log(data);
  12. });
  13.  
  14. $curve.on('anchors', function( ev, $anchors ){
  15. // $anchors is jQuery object of all anchor elements.
  16. // Caution: Do not modify $anchors. It is read-only. Because it is a managed object inside the plugin.
  17. $anchors.each(function() {
  18. // $(this) is one anchor.
  19. });
  20. });

6.API方法。

  1. $curve.trigger('data', [function( data ){
  2. // get data
  3. }]);
  4.  
  5. $curve.trigger('option', [{
  6. // update options
  7. }]);
  8.  
  9. // resize to fit the parent element.
  10. $curve.trigger('resized');
  11.  
  12. // destroy the instance
  13. $curve.trigger('destroy');

更新日志:

2021-12-04

  • v0.6.0:事件调用中的锚点

2020-08-30

  • 版本0.5.0

2020-08-24

  • 调整后的选项
  • 更新的演示。

2020-08-23

  • 添加的事件

预览截图