/**
* customizer.js
*
* Theme Customizer enhancements for a better user experience.
*
* Contains handlers to make Theme Customizer preview reload changes asynchronously.
*/
( function( $ ) {
// Site title and description
wp.customize( 'blogname', function( value ) {
value.bind( function( to ) {
$( '.site-title a' ).text( to );
} );
} );
wp.customize( 'blogdescription', function( value ) {
value.bind( function( to ) {
$( '.site-description' ).text( to );
} );
} );
// Body bg color
wp.customize( 'atlantic_bg_color', function( value ) {
value.bind( function( to ) {
$( 'body' ).css( {
'background-color': to
} );
} );
} );
// Headings color
wp.customize( 'atlantic_heading_color', function( value ) {
value.bind( function( to ) {
$( 'h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited' ).css( {
'color': to
} );
} );
} );
// Navigation color
wp.customize( 'atlantic_navigation_color', function( value ) {
value.bind( function( to ) {
$( '.main-navigation a, .main-navigation a:visited' ).css( {
'color': to
} );
} );
} );
// Font color
wp.customize( 'atlantic_font_color', function( value ) {
value.bind( function( to ) {
$( 'body, button, input, select, textarea' ).css( {
'color': to
} );
} );
} );
// Links color
wp.customize( 'atlantic_link_color', function( value ) {
value.bind( function( to ) {
$( 'a, a:visited' ).css( {
'color': to
} );
} );
} );
// Website width
wp.customize( 'atlantic_width', function( value ) {
value.bind( function( to ) {
$( '.inner' ).css( {
'max-width': to + 'px'
} );
} );
} );
// Content width
wp.customize( 'atlantic_content_width', function( value ) {
value.bind( function( to ) {
$( '.inner .inner' ).css( {
'max-width': to + 'px'
} );
} );
} );
// Content font
wp.customize( 'atlantic_font', function( value ) {
value.bind( function( to ) {
if ( '' === to ) {
$( 'body, button, input, select, textarea' ).css( {
'font-family': "'Source Code Pro', 'Courier New', Helvetica, Arial, sans-serif"
} );
} else {
$('body').append("");
$( 'body, button, input, select, textarea' ).css( {
'font-family': "'" + to + "', 'Courier New', Helvetica, Arial, sans-serif"
} );
}
} );
} );
// Content heading font
wp.customize( 'atlantic_heading_font', function( value ) {
value.bind( function( to ) {
if ( '' === to ) {
$( 'h1, h2, h3, h4, h5, h6' ).css( {
'font-family': "'Source Code Pro', 'Courier New', Helvetica, Arial, sans-serif"
} );
} else {
$('body').append("");
$( 'h1, h2, h3, h4, h5, h6' ).css( {
'font-family': "'" + to + "', 'Courier New', Helvetica, Arial, sans-serif"
} );
}
} );
} );
wp.customize('atlantic_font_base_size', function( value ){
value.bind( function ( value ){
int_val = parseFloat(value);
html_rems = int_val + 'rem';
$('html').css('font-size', html_rems);
});
});
//H1 - H6 settings
var header_elements = {
'h1' : 'H1',
'.site-title' : 'Site Title',
'.site-description' : 'Site Description',
'h2' : 'H2',
'h3' : 'H3',
'h4' : 'H4',
'h5' : 'H5',
'h6' : 'H6',
}
//go through each and find the elements we need and adjust them visually
$.each(header_elements, function(index, value){
var key = index;
//font sizing adjustments
wp.customize('atlantic_' + key + '_font_size', function(value){
value.bind('atlantic_' + key + '_color', function(value){
value = parseFloat(value);
$headers = $(key);
$headers.each(function(){
$(this).css('font-size', value + 'rem');
});
});
});
//font family adjustments
wp.customize('atlantic_' + key + '_font_family', function(value){
value.bind('atlantic_' + key + '_color', function(value){
$headers = $(key);
$headers.each(function(){
$body = $('body');
$body.append("");
$(this).css('font-family', value);
});
});
});
//colour adjustments
wp.customize('atlantic_' + key + '_color', function( value ){
value.bind('atlantic_' + key + '_color', function( value ){
$headers = $(key);
$headers.each(function(){
$(this).css('color', value);
});
});
});
//margin top adjustmnets
wp.customize('atlantic_' + key + '_margin_top', function( value ){
value.bind('atlantic_' + key + '_margin_top', function( value ){
$headers = $(key);
$headers.each(function(){
$(this).css('margin-top', value + 'rem');
});
});
});
//margin bottom adjustmnets
wp.customize('atlantic_' + key + '_margin_bottom', function( value ){
value.bind('atlantic_' + key + '_margin_bottom', function( value ){
$headers = $(key);
$headers.each(function(){
$(this).css('margin-bottom', value + 'rem');
});
});
});
});
// header_elements.forEach(function(currentValue, index, array){
//
//
//
//
// });
} )( jQuery );