Skip to content

Instantly share code, notes, and snippets.

@jnschrag
jnschrag / functions.php
Created August 31, 2016 18:58
Include featured images of posts and pages in WordPress menus
add_filter('wp_nav_menu_objects', 'ad_filter_menu', 10, 2);
function ad_filter_menu($sorted_menu_objects, $args) {
if ($args->menu->slug != 'home-page-slider')
return $sorted_menu_objects;
// edit the menu objects
foreach ($sorted_menu_objects as $menu_object) {
// searching for menu items linking to posts or pages
// can add as many post types to the array
@jnschrag
jnschrag / France: Anchor Links
Created May 3, 2017 19:15
European Election Watch HTML
@jnschrag
jnschrag / .block
Last active September 8, 2017 14:49 — forked from NPashaP/.block
biPartite - Horizontal Example
license: gpl-3.0
@jnschrag
jnschrag / .block
Last active October 12, 2017 15:31
Pacific Focused rolling pan and zoom with Mercator projection
license: mit
@jnschrag
jnschrag / .block
Last active October 17, 2017 20:11
Multi-Series Line Chart
license: gpl-3.0
@jnschrag
jnschrag / .block
Created October 18, 2017 19:23 — forked from mbostock/.block
Drag Slider
license: gpl-3.0
@jnschrag
jnschrag / .block
Created October 27, 2017 20:04 — forked from mbostock/.block
Stacked Bar Chart
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<!-- I recommend you host this file on your own, since this will change without warning -->
<script src="http://datamaps.github.io/scripts/datamaps.world.min.js?v=1"></script>
<h2>Datamaps Playground</h2>
<p><a href="http://datamaps.github.io/">DataMaps Project Homepage</a></p>
<div id="container1" style="position: relative; width: 80%; max-height: 450px;"></div>
@jnschrag
jnschrag / africa-table.html
Created January 30, 2018 17:17
ChinaPower FDI Tables
<table class="striped">
<thead>
<tr>
<th class="title" colspan="4"> China FDI Top Destinations in Africa (2005 - 2016)</th>
</tr>
<tr>
<th>Country</th>
<th>Volume in $ billions</th>
<th>Global Ranking</th>
<th>Economic Development Level</th>
@jnschrag
jnschrag / animations-example.css
Created April 2, 2018 19:50
ASP Longform Animation
#satellite .longform-section-overlay.aos-animate + .section-content svg#Layer path {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: dash 5s linear forwards 1;
}
@keyframes dash {
from {
stroke-dashoffset: 1000;
}