This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Arc movement */ | |
.wrapper { | |
width: 500px; | |
margin: 300px 0 0; | |
transition: all 1s; | |
transform-origin: 50% 50%; | |
} | |
.inner { | |
display: inline-block; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Arc movement */ | |
.wrapper { | |
width: 500px; | |
margin: 300px 0 0; | |
transition: all 1s; | |
transform-origin: 50% 50%; | |
} | |
.inner { | |
display: inline-block; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function reveal_trigger() { | |
$id = get_the_id(); | |
$modalID = 'mod'.$id; | |
echo 'data-reveal-id="'.$modalID.'"'; | |
} | |
function reveal_content($size, $part1, $part2) { | |
$id = get_the_id(); | |
$modalID = 'mod'.$id; | |
echo '<div id="'.$modalID.'" class="reveal-modal '.$size.'">'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//shortcode for tool-tip drop-down | |
// [tooltip dropdown="What goes in drop down"]content[/tooltip] | |
function jp_tooltip($atts, $content = null) { | |
extract(shortcode_atts(array( | |
'dropdown' => ' ' | |
), $atts)); | |
return '<span data-tool-tip class="has-tip" title="'.$dropdown.'">'.$content.'</span>'; | |
} | |
add_shortcode("tooltip", "jp_tooltip"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.orbit-container').hover(function () { | |
$('.orbit-prev').fadeOut("medium"); | |
$('.orbit-next').fadeOut("medium"); | |
$('.orbit-prev').fadeIn("medium"); | |
$('.orbit-next').fadeIn("medium"); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function slug_alert_box($content,$class) { | |
if ($content == '') { | |
//use this to set a default alert or take out to allow shortcodes without content to be just blank boxes. | |
$content = 'DEFAULT ALERT TEXT'; | |
} | |
if ($class == '') { | |
$classes = 'alert-box'; | |
} | |
else { | |
$class = 'alert-box '.$class; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('post_thumbnail_html', 'slug_responsive_img', 5, 5); | |
//Image sizes for Interchange | |
add_image_size( 'fd-lrg', 1024, 99999); | |
add_image_size( 'fd-med', 768, 99999); | |
add_image_size( 'fd-sm', 320, 9999); | |
function slug_responsive_img($html, $post_id, $post_thumbnail_id, $size, $attr) { | |
//make image links | |
$attachment_id = $post_thumbnail_id; | |
$default = wp_get_attachment_image_src($attachment_id); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.write('<script src=/js/vendor/' | |
+ ('__proto__' in {} ? 'zepto' : 'jquery') | |
+ '.js><\/script>'); | |
</script> | |
<script src="/js/foundation.min.js"></script> | |
<script> | |
$(document).foundation(); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.page_item').click(function() { | |
$('.top-bar, [data-topbar]').css('height', '').removeClass('expanded'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Sidr | |
* https://github.com/artberri/sidr | |
* | |
* Copyright (c) 2013 Alberto Varela | |
* Licensed under the MIT license. | |
* | |
* Using fixed version (curtesy of MaddinXx) compatible with jQuery 1.8+ found at: https://raw.github.com/MaddinXx/sidr/master/src/jquery.sidr.js | |
* tested with jQuery 1.10.2 | |
*/ |