Using jQuery View
XD, PSD, AI and INDD layers to jQuery with clean and clear code becomes simple. Translate your XD, PSD, AI and INDD layers to jQuery with advanced support for text, images and shapes.
Example Image Element
1 2 3 4 5 6 7 8 | jQuery('<img/>', { id: 'index_button_bg' }).appendTo('body') .css('left','927px') .css('top','1311px') .css('width','143px') .css('height','51px') .attr('src','../skins/exportkit_example_125/index_button_bg.png'); |
Example Text Element
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | jQuery('<div/>', { id: 'page_title', html: 'Toronto’s award winning <br/>creative agency' }).appendTo('body') .css('fontWeight','bold') .css('textAlign','left') .css('left','98px') .css('top','131px') .css('width','888px') .css('height','188px') .css("fontFamily","ArialMT, Arial, Helvetica, sans-serif") .css('fontSize','72px') .css("text-shadow","3px 4px 2px rgba(0,0,0,0.75)") .css("color","#FFFFFF"); |
Example Shape Element
1 2 3 4 5 6 7 8 | jQuery('<div/>', { id: 'thumbnail' }).appendTo('body') .css('left','132px') .css('top','1253px') .css('width','165px') .css('height','165px') .css('background','#ECECEC'); |
Customize the jQuery View to include additional information with the XD, PSD, AI and INDD layer such as effects, advanced text rendering and more.
Example Layer Effects
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | jQuery('<div/>', { id: 'page_title', html: 'Toronto’s award winning <br/>creative agency' }).appendTo('body') .css('fontWeight','bold') .css('textAlign','left') .css('left','98px') .css('top','131px') .css('width','888px') .css('height','188px') .css("fontFamily","ArialMT, Arial, Helvetica, sans-serif") .css('fontSize','72px') .css("text-shadow","3px 4px 2px rgba(0,0,0,0.75)") .css("color","#FFFFFF"); |