1234567891011121314151617 |
- $(function () {
- $('.demo1').colorpicker();
- $('.demo2').colorpicker();
-
- // Horizontal mode
- $('#demo_forceformat').colorpicker({
- format: 'rgba', // force this format
- horizontal: true
- });
- // Horizontal mode
- $('#demo_forceformat3').colorpicker({
- format: 'rgba', // force this format
- });
-
-
- $('.demo-auto').colorpicker();
- });
|