GithubHelp home page GithubHelp logo

doc22940 / live-css-editor Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rukavina/live-css-editor

1.0 1.0 0.0 982 KB

jquery online css editor, themeroller like tool for customizing your web page

JavaScript 84.71% CSS 15.29%

live-css-editor's Introduction

Live CSS Editor

Overview

Live CSS Editor (LCE) is jquery plugin, "themeroller like" tool for customizing your web page design. Basically, you provide json with configuration and LCE shows: live preview and CSS editor with ability to edit properties you defined. So you can control which properties can be customized.

Demo

http://rukavina.github.com/live-css-editor/demo

Installation and setup

You have to include this dependencies in your page (head):

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../dependencies/microtpl.js"></script>
<script type="text/javascript" src="../dependencies/jscolor/jscolor.js"></script>
<script type="text/javascript" src="../dependencies/chosen/chosen.jquery.min.js"></script>

<!-- Editor -->
<script src="../source/livecsseditor/livecsseditor-2.0.js"></script>
<script src="../source/livecsseditor/editors/lceColor.js"></script>
<script src="../source/livecsseditor/editors/lceFont.js"></script>
<script src="../source/livecsseditor/editors/lceBackground.js"></script>            

In the page's body provide div where editor will be placed - give it enough space. Note: there cannot be 2 LCEs on a single page.

<div id="livecsseditor"></div> 

Init LCE when document is ready, ex.

$(document).ready(function(){
    $('#livecsseditor').livecsseditor({
        pages: {
            'targets/simple.html': {
                name: 'First Page',
                def: {
                    'h1':{
                        name: 'Heading',
                        props:['color','background-color','font-family','font-weight','text-align'],
                        labels: ['Color','Background color','Font','Font Weight','Align'],
                        description: 'Update heading here',
                        editorsConfig:{
                            "font-family": {
                                "names": ["Verdana","Arial", "Times New Roman"]
                            }
                        },
                        iconClass: "glyphicon glyphicon-star"
                    },
                    'p,span':{
                        name: 'Text',
                        props:['font-size','color'],
                        labels: ['Font size','Color'],
                        editorsConfig:{
                            "font-size": {
                                "fixedValues": ["original","10px","11px","12px"]
                            }
                        },
                        iconClass: "glyphicon glyphicon-font"
                    }
                }
            }
        }
    });               
});

Options

option description default possible values
pages JSON definition of pages, styles and properties to be customized null Object
layout_tpl Micro template layout default template String
props_tpl Micro template property list layout default template String
hoverColor Background color or selected element in the live preview #faf3ba String

Methods

getCss( pagePath )

Get customized css string for defined page pagePath or all pages

Returns: String

  • pagePath, Type: String, Default: null
$('.selector').livecsseditor('getCss','page.html');</pre>

getJson( pagePath )

Get customized JSON Object for defined page pagePath or all pages

Returns: Object

  • pagePath, Type: String, Default: null
$('.selector').livecsseditor('getJson','page.html');</pre>

setJson( jsonObject )

Set JSON Object for customized prepared style

  • jsonObject, Type: Object, Default: null
$('.selector').livecsseditor('setJson',{
    "page.html":{
        "h1": {
            "background-color": "#F9FF40",
            "color": "#FA2B46"
        }
    }
});

Examples


Standard Setup

VIEW DEMO

Follow standard installation. Start livecsseditor when the document is ready.

$('#livecsseditor').livecsseditor({
    pages: {
        'targets/simple.html': {
            name: 'First Page',
            def: {
                'h1':{
                    name: 'Heading',
                    props:['color','background-color','font-family','font-weight','text-align'],
                    labels: ['Color','Background color','Font','Font Weight','Align'],
                    description: 'Update heading here',
                    editorsConfig:{
                        "font-family": {
                            "names": ["Verdana","Arial", "Times New Roman"]
                        }
                    },
                    iconClass: "glyphicon glyphicon-star"
                },
                'p,span':{
                    name: 'Text',
                    props:['font-size','color'],
                    labels: ['Font size','Color'],
                    editorsConfig:{
                        "font-size": {
                            "fixedValues": ["original","10px","11px","12px"]
                        }
                    },
                    iconClass: "glyphicon glyphicon-font"
                }
            }
        }
    }
});                

Options JSON has the following structure:

  • pages
    • page url URL to a page to be customized
      • name Descriptive page name
      • def
        • element css selector CSS selector of a DOM element
          • name Descriptive element name
          • props Array of editable CSS properties
          • labels Array of descriptive names of editable properties
          • description Description of the current element
          • iconClass Optional element's icons css class
          • editorsConfig Optional properties for particular editors
            • property Value for each key is configuration for particular editor

Multipage Setup

VIEW DEMO

Livecsseditor let you manage multiple pages from the same screen.


Size and Position Editors

VIEW DEMO

In this example we have included custom position and size editors for in place, WYSIWYG editing. After standard installation you need to include these 2 editors:

<script src="../source/livecsseditor/editors/lceSize.js"></script>
<script src="../source/livecsseditor/editors/lcePosition.js"></script>

Options JSON has to include definition for this properties on proper elements:

'div.resizable':{
    name:'Resizable',
    props:['width','height'],
    iconClass: "glyphicon glyphicon-fullscreen"
},
'div.movable':{
    name:'Movable',
    props:['left','top'],
    iconClass: "glyphicon glyphicon-fullscreen"
}

Note that movable element needs to have absolute position in order to be draggable.


Background image editor

VIEW DEMO

Selecting a background image for your elements is more of a backend task, thus you might want to create custom editor with integrated file manager or similar.

Still, there's a simple built-in option. Basically, it's a simple select box with predefined options provided by you.

'div.resizable':{
    name:'BG Image',
    props:['background-image'],
    labels: ['Background Image'],
    description: 'Choose BG Image',
    editorsConfig:{
        "background-image": {
            "urls": ["images/bg1.jpg","images/bg2.jpg", "images/bg3.jpg"]
        }
    },
    iconClass: "glyphicon glyphicon-fullscreen"
}

API Interaction

VIEW DEMO

livecsseditor has two methodsgetCss andgetJson for you to store somewhere definition of made customization. On the hand,setJson provides a way to load styles from JSON object:

Options JSON has to include definition for this properties on proper elements:

//css button
$('#cssBtn').click(function(){
    alert($('#livecsseditor').livecsseditor('getCss','targets/complex.html'));
});
//json get button
$('#jsonBtn').click(function(){
    console.log($('#livecsseditor').livecsseditor('getJson','targets/complex.html'));
});
//json set button
$('#jsonSetBtn').click(function(){
    $('#livecsseditor').livecsseditor('setJson',{
        "targets/complex.html":{
            "h1": {
                "background-color": "#F9FF40",
                "color": "#FA2B46"
            }
        }
    });
});

Custom Editor

VIEW DEMO

Whenever you are not satisfied with built-in editor or you need some custom editing logic, you can easily plug in your custom editing function.

In this example we attached our custom color editor. Let's say we want our users to choose just red or green color, peace of cake:

$.fn.livecsseditor.setPropertyEditor(['color','background-color'],
    function customColorEditor(customizer, vars, config){
        var $select = $('&lt;select class="form-control"&gt;&lt;/select&gt;'),
            html = '',
            options = {
                "original": "",
                "#FF0000": "Red",
                "#00FF00": "Green"
            };
        vars.container.append($select);
        for(var value in options){
            var selected = '';
            if (vars.value == value) {
                selected = ' selected="selected"';
            }
            html += '&lt;option value="' + value + '"' + selected  + '"&gt;' + options[value] + '&lt;/option&gt;';
        }
        $select.html(html).change(function(){
            vars.setValue($(this).val());
        })                    
});

We attached editor function using$.fn.livecsseditor.setPropertyEditor. Basically, we define in this call which properties we edit and callback function. During callback execution, livecsseditor provides 3 arguments:

  • customizer - livecsseditor instance
  • vars - running environment: value, setValue function, etc.
  • config - editor local configuration

Fixed values

VIEW DEMO

Whenever you want to limit available options to predefined set, there's no need to create custom editor, you can just define property editor configuration:

$('#livecsseditor').livecsseditor({
    pages: {
        'targets/complex.html': {
            name: 'Complex page',
            def: {
                'h1':{
                    name: 'Heading',
                    props:['font-size'],
                    labels: ['Font size'],
                    editorsConfig:{
                        "font-size": {
                            "fixedValues": ["14px","15px", "16px"]
                        }
                    },
                    iconClass: "glyphicon glyphicon-star"
                }                                
            }
        }
    }
});

Credits

This projects was inspired or uses the following projects:

Licence

The MIT License (MIT)

Copyright (c) 2012 Milan Rukavina

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

live-css-editor's People

Contributors

machadoug avatar rukavina avatar

Stargazers

 avatar

Watchers

 avatar

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.