Schneider, Athanasius http://data.bibliotheken.nl/id/thes/p242636462 an entity of type: Person <!-- -->

RDFTurtleN-TriplesJSON-LD







Schneider, Athanasius



http://data.bibliotheken.nl/id/thes/p242636462


an entity of type: Person





<!--


-->



































Schneider, Athanasius 






























Athanasius Schneider 






























Schneider 






























Athanasius 


















schema:Person











<http://viaf.org/viaf/51917677>







<http://www.wikidata.org/entity/Q67057>














_:2744776a7bb646052bde746c34a3174a










blank nodes








_:2744776a7bb646052bde746c34a3174a





























242636462 


















foaf:Document











<http://data.bibliotheken.nl/doc/thes/p242636462>












<http://data.bibliotheken.nl/id/dataset/persons>












<http://data.bibliotheken.nl/id/thes/p242636462>












<https://opendatacommons.org/licenses/by/1-0/>






































data from the linked data cloud














  • data from: http://data.bibliotheken.nl/sparql




  • view as: RDF, Turtle, N-Triples, JSON-LD




var col1 = 0;
var col3 = 0;
var paginator =
"to top" : $('body'),
"direct relations" : null,
"blank nodes" : null,
"inverse relations" : null,
"data from the linked data cloud" : null
;

$('#logo').click(function()
document.location = 'http://data.bibliotheken.nl';
);

var callingPage = null;
var callingPageTitles = null;
$(function()

/* error images */
lodview.setErrorImage($('#widgets').find('img'));

/* improving interface */
lodview.setColumnsSize();
lodview.betterHeader();
$(window).on('resize', function()
lodview.betterHeader();
var img = $('body').find('img.hover');
if (img.length > 0)
lodview.zoomHelper(img);
var map = $('body').find('#maphover');
if (map.length > 0)
lodview.zoomHelper($('body').find('.maphover'), map, true);
);
lodview.betterTypes();


lodview.imagesInWidget();
lodview.mapInWidget();
$(document).keyup(function(e)
if (e.keyCode === 27)
//close fullscreen images and maps
lodview.closeFull();

);
/* adding info tooltips */
lodview.infoTooltip('init');

/* footer functions */
lodview.footer();

/* managing languages */
lodview.multiLabels();

/* recovering connected titles from relations */
lodview.connectedResourceTitles();

/* navigation tool */
lodview.rNavigator();

/* grabbing informations from the LOD cloud */
lodview.grabData();

$(window).on('load', function()
/* removing lodCloud block if empty */
if ($('.linkingElement').length > 0)
paginator["data from the linked data cloud"] = $('#lodCloud');

if ($('#directs').children(":first").length == 0)
$('#directs').addClass("empty");
else
paginator["direct relations"] = $('#directs');

if ($('#bnodes').not('.empty').length > 0)
paginator["blank nodes"] = $('#bnodes');

lodview.imagesInWidget(true);
);
);

var lodview =
zoomHelper : function(img, obj, alignLeft,ow,oh)
var l = this;
if (alignLeft)
var ww = window.innerWidth;
var wh = window.innerHeight;
if (obj)
obj.css(
width : ww - 70,
height : wh
);

img.css(
width : ww - 70,
height : wh,
opacity : 0,
left : 0,
top : 0
);
else
var ww = window.innerWidth - 100;
var wh = window.innerHeight - 100;

var w = ww;
var h = wh;

try
w = ow?ow:img.naturalWidth();
h = oh?oh:img.naturalHeight();
catch (e)

if (!w)
w = ww;

if (!h)
h = wh;

// image bigger than the window
if (w > ww)
h = ww * h / w;
w = ww;

if (h > wh)
w = wh * w / h;
h = wh;

if (obj)
obj.css(
width : w,
height : h
);

img.css(
width : w,
height : h,
opacity : 0,
left : '50%',
top : '50%',
marginLeft : -(w / 2),
marginTop : -(h / 2)
);

img.fadeTo(300, 1);
,
betterTypes:function()
$('.dType').each(function()
var w = $(this).width();
$(this).closest('div.c2').css(
paddingRight : w + 7
)
);
,
drawMap : function drawMap(id, lat, lon, testoPopup, fullVersion)
var map = null;
if (fullVersion)
var map = L.map(id).setView([ lat, lon ], 8);
L.marker([ lat, lon ]).addTo(map).bindPopup(testoPopup).openPopup();
else
map = L.map(id,
scrollWheelZoom : false,
zoomControl : false
).setView([ lat, lon ], 3);
L.marker([ lat, lon ]).addTo(map);

var osmurl = 'http://s.tile.osm.org/z/x/y.png';
if(document.location.href.indexOf('https://') == 0)
osmurl = 'https://s.tile.openstreetmap.org/z/x/y.png';

L.tileLayer(osmurl,
attribution : '© OpenStreetMap contributors'
).addTo(map);

,
mapInWidget : function(forceLoad)
if ($('map').length > 0)
var l = this;
l.drawMap("resourceMap", '', '');
var a = $('#resourceMap');
var w = a.width();
var h = a.height();
var tools = $('
')
var zoom = $('');
tools.append(zoom);
zoom.click(function()
l.fullMap('', '', 'Schneider, Athanasius');
);
a.prepend(tools);
a.hover(function()
$(this).find('.imgTools').stop().fadeIn('fast');
, function()
$(this).find('.imgTools').stop().fadeOut('fast');
);

,
imagesInWidget : function(forceLoad)
var l = this;
if (forceLoad)
$('#widgets>div#images>a>img').load();
else
$('#widgets>div#images>a>img').load(function()
var w = $(this).width();
var h = $(this).height();
$(this).parent().animate(
minWidth : w
, 'slow', 'swing');
var a = $(this).parent();
var anchor = a.attr("href");
if (anchor)
var tools = $('
')
var zoom = $('');
var open = $('');
tools.append(open);
tools.append(zoom);
open.click(function()
window.open($(this).parent().attr("data-href"));
);
zoom.click(function()
var aImg = $(this).parent().parent().find('img');
l.fullImg(aImg.clone(true),aImg.naturalWidth(),aImg.naturalHeight());
);
tools.attr("data-href", anchor);
a.removeAttr("href");
a.css(
'cursor' : 'default'
);
a.prepend(tools);
a.hover(function()
$(this).find('.imgTools').stop().fadeIn('fast');
, function()
$(this).find('.imgTools').stop().fadeOut('fast');
);

);

,
closeFull : function()
$('body').find('div.hover').fadeOut(350, function()
$(this).remove()
);
$('body').find('#maphover').fadeOut(200, function()
$(this).remove()
);
$('body').find('img.hover').fadeOut(200, function()
$(this).remove()
)
,
fullMap : function(lat, lon, testoPopup)
var l = this;
$('body').find('.hover').remove();
var layer = $('
');
var map = $('
');
layer.click(function()
l.closeFull();
);
map.find('.closemapzoom').click(function()
l.closeFull();
);
$('body').append(layer);
$('body').append(map);
l.zoomHelper(map, $('#maphover'), true);
layer.fadeIn(300, function()
l.drawMap("maphover", lat, lon, testoPopup, true);
);
,
fullImg : function(img,w,h)
var l = this;
img.addClass('hover');
$('body').find('.hover').remove();
var layer = $('
');
layer.click(function()
l.closeFull();
);
img.click(function()
l.closeFull();
);
$('body').append(layer);
layer.fadeIn(300, function()
$('body').append(img);
img.show();
img.fadeTo(0, 0);
l.zoomHelper(img,null,null,w,h);
);
,
betterHeader : function()
var IRI = $('h2>.iri');
var istance = $('h2>.istance');
var istsize = 0;
istance.find('a').each(function()
istsize += $(this).width();
);
if (window.innerWidth - IRI.width() - istsize 0)
$('#lconnected').fadeIn('fast');
l.doConnectedResourceTitles(abouts, function()
l.getInverses()
);
else
l.getInverses();

,
doConnectedResourceTitles : function(abouts, onComplete)
return $.ajax(
url : "http://data.bibliotheken.nl/linkedResourceTitles",
data :
"abouts" : abouts,
"IRI" : "http://data.bibliotheken.nl/id/thes/p242636462",
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
method : 'POST',
beforeSend : function()

,
success : function(data)
data = $(data);
data.find('resource').each(function()
var IRI = $(this).attr("about");
var title = $(this).find("title").text();
$('a.isLocal[title=""]').each(function()
if ($(this).find('tt').length == 0)
$(this).append("
" + title + "");

)
);
,
error : function(e)
/* TODO: manage errors */
,
complete : function()
/* inverse relations */
if (onComplete)
onComplete();


);
,
multiLabels : function()
var l = this;
var cLocale = 'en';
$('.value').each(function()
var cnt = $(this);
var multipleLang = false;
var plang = "";
$('.lang', cnt).each(function()
var lang = $(this).attr("data-lang");
if (lang != plang && plang != '')
multipleLang = true;

plang = lang;
);
if (multipleLang)
$('.lang', cnt).each(function()
var lang = $(this).attr("data-lang");
if ($.trim(lang) && cnt.find("span.clang." + lang).length == 0)
var clang = $("" + lang + "");
clang.click(function()
var lang = $(this).text();
$(this).parent().children('div').hide();
$(this).parent().children('div.lang.' + lang).show();
$(this).parent().children('span.clang').removeClass('sel');
$(this).addClass('sel');
);
cnt.find("div:first").before(clang);

);
cnt.find('.clang').sort(function(a, b)
var contentA = $(a).text();
var contentB = $(b).text();
return (contentA contentB) ? 1 : 0;
).prependTo(cnt);

var btt = cnt.children('span.clang.' + cLocale);
if (btt.length == 0)
btt = cnt.children('span.clang.en'); // fallback to
// english

if (btt.length == 0)
btt = cnt.children('span.clang:first');

btt.click();
else
$('.lang', cnt).each(function()
var lang = $(this).attr("data-lang");
if ($.trim(lang))
var a = $(this);
if (a.find("div.fixed").length > 0)
a = a.find(".fixed");

a.append("@" + lang + "");

$(this).removeClass('lang');
);

);
,
infoTooltip : function(act, obj)
var l = this;
if (act === 'init')
$('[data-label]').each(function()
if ($(this).attr('data-label'))
var iph = $('');
$(this).before(iph);
$(this).parent().hover(function()
l.infoTooltip('showInfoPoint', $(this));
, function()
l.infoTooltip('remove', $(this));
);
/*
* $(this).parent().on('mousemove', function()
* l.infoTooltip('checkInfoPoint', $(this)); );
*/

);
else if (act === 'checkInfoPoint')
if (obj.find('i').length == 0)
var i = $('');
obj.prepend(i);
i.hover(function()
l.infoTooltip('show', obj);
, function()
l.infoTooltip('remove', obj);
);

else if (act === 'showInfoPoint')
var i = $('');
obj.prepend(i);
i.show();
i.hover(function()
l.infoTooltip('show', obj);
, function()
l.infoTooltip('remove', obj);
);
else if (act === 'show')
var data = obj.children('[data-label]');
var t = $('
' + data.attr("data-label") + '' + (data.attr("data-comment") ? '
' + data.attr("data-comment") : '') + '');
obj.prepend(t);
var th = obj.position().top - $(window).scrollTop() + t.height();
var wh = window.innerHeight - 50;
if (th > wh)
t.css(
marginTop : '-' + (t.height() + 23) + 'px'
);

t.css(
display : 'none',
visibility : 'visible'
);

t.show();
else if (act === 'remove')
var p = obj.parent();
p.find('.tooltip').fadeOut('fast', function()
$(this).remove();
);
p.find('.i').fadeOut('fast', function()
$(this).remove();
);

,
getInverses : function()
var l = this;
l.lMessage("loading connected resource titles");
var invCont = $('#inverses');
var iri = "http://data.bibliotheken.nl/id/thes/p242636462";
if (iri)
$('#linverse').delay(100).fadeIn('fast');
$.ajax(
url : "http://data.bibliotheken.nl/linkedResourceInverses",
method : 'POST',
data :
"IRI" : iri,
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
beforeSend : function()

,
success : function(data)
data = $(data);

if (data.find('resource').length > 0)
invCont.removeClass("empty");
invCont.append($("

inverse relations"));
paginator["inverse relations"] = invCont;

data.find('resource').each(function()

var IRI = $(this).attr("nsabout");
if (IRI.indexOf("null:") == 0)
IRI = '<' + $(this).attr("about").replace(/(http://.+[/#])([^/#]+)$/, '$1$2') + ">";
else
IRI = IRI.replace(/:/, ':') + '';

var count = $(this).find("count").text();
var msg = "is 0 of";
// TODO: add link!
msg = msg.replace(/0/, "" + IRI);

var el = $("
" + count + " " + (count == 1 ? "resource" : "resources") + "");
anchor.click(function()
if (anchor.parent().hasClass('isOpened'))
anchor.parent().find('.toOneLine,.prevArrow,.nextArrow,.lloadingb').remove();
anchor.parent().removeClass('isOpened');
anchor.parent().removeClass('opened');
else
var property = $(this).attr('data-property');
var contInverse = $(this).parent();
anchor.parent().addClass("isOpened");
var start = 0;
$.ajax(
url : "http://data.bibliotheken.nl/linkedResourceInverses",
method : 'POST',
data :
"start" : start,
"IRI" : "http://data.bibliotheken.nl/id/thes/p242636462",
"property" : property,
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
beforeSend : function()
anchor.parent().find('.toOneLine,.prevArrow,.nextArrow,.lloadingb').remove();
anchor.after("");
,
success : function(data)
data = $(data);
var abouts = [];
data.find('resource').each(function()
var IRI = $(this).attr("nsabout");
if (IRI.indexOf("null:") == 0)
IRI = '<' + $(this).attr("about") + ">";

if (IRI.indexOf(":") == -1)
IRI = "_:" + $(this).attr("about");

var title = $(this).find("title").text();
var url = $(this).attr("propertyurl")
contInverse.append($("
" + IRI + ""));
abouts.push($(this).attr("about"));
);
$('.toOneLine', contInverse).show();
if (count > 10)
anchor.parent().addClass("opened");

if (abouts.length > 0)
l.doConnectedResourceTitles(abouts, function()
anchor.parent().find('.lloadingb').hide();
);
else
anchor.parent().find('.lloadingb').hide();

,
complete : function()
if (count > 10)
var prev = $('
');
var next = $('
');
prev.css(
'opacity' : '0.3',
'cursor' : 'default'
);
next.click(function()
return l.paginating('next', $(this), start, property, count);
);
anchor.after(next);
anchor.after(prev);


,
error : function()
contInverse.append($("
sorry, an error occurred"));


);

return false;
);
invCont.append(el);
var value = $("
");
value.append(anchor);
invCont.append(value);
if ("open" == "open")
anchor.click();

);
l.setColumnsSize(true);
$('#linverse').append('').find('img').fadeIn('fast');
,
error : function(e)
$('#linverse').append('');
,
complete : function()
l.lMessage(null, 'close');

);


,
paginating : function(direction, anchor, start, property, count)
var l = this;
if (direction == 'next')
start = start + 10;
else if (start > 0)
start = start - 10;

var contInverse = anchor.parent();
if (callingPage)
callingPage.abort();

if (callingPageTitles)
callingPageTitles.abort();

callingPage = $.ajax(
url : "http://data.bibliotheken.nl/linkedResourceInverses",
method : 'POST',
data :
"start" : start,
"IRI" : "http://data.bibliotheken.nl/id/thes/p242636462",
"property" : property,
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
beforeSend : function()
contInverse.find('.toOneLine').addClass('toRemove').css(
'opacity' : 0.2
);
contInverse.find('.prevArrow,.nextArrow').remove();
contInverse.find('.lloadingb').show();
var prev = $('
');
var next = $('
');
if (start + 10 > count)
next.css(
'opacity' : '0.3',
'cursor' : 'default'
);
else
next.click(function()
return l.paginating('next', $(this), start, property, count);
);

if (start > 0)
prev.click(function()
return l.paginating('prev', $(this), start, property, count);
);
else
prev.css(
'opacity' : '0.3',
'cursor' : 'default'
);

contInverse.find('a:first').after(next);
contInverse.find('a:first').after(prev);
,
success : function(data)
data = $(data);
var abouts = [];
data.find('resource').each(function()
var IRI = $(this).attr("nsabout");
if (IRI.indexOf("null:") == 0)
IRI = '<' + $(this).attr("about") + ">";

if (IRI.indexOf(":") == -1)
IRI = "_:" + $(this).attr("about");

var title = $(this).find("title").text();
var url = $(this).attr("propertyurl")
contInverse.append($("
" + IRI + ""));
abouts.push($(this).attr("about"));
);

if (abouts.length > 0)
callingPageTitles = l.doConnectedResourceTitles(abouts, function()
contInverse.find('.toOneLine.toRemove').remove();
$('.toOneLine', contInverse).show();
contInverse.find('.lloadingb').hide();
);
else
contInverse.find('.toOneLine.toRemove').remove();
$('.toOneLine', contInverse).show();
contInverse.find('.lloadingb').hide();

anchor.unbind('click');
,
complete : function()
,
error : function()
contInverse.find('.toOneLine').remove();
contInverse.append($("
sorry, an error occurred"));

);
return false;
,
grabData : function()
var l = this;
var linkingList = [];
var counter = 0;
var errors = 0;
var map = $('map:first');
$('.linkingElement').each(function()
var link = $.trim($(this).attr("href"));
linkingList.push(link);
);

/* lod cloud */
if (linkingList.length == 0)
$('#lodCloud').empty();
$('#lodCloud').addClass("empty");
$('#linking').hide();
else
$('#linking').fadeIn('fast');
var container = $('#lodCloud').children("div");
var dest = $('
');
var content = $("
");

content.append("

Resource connected u003Cstrongu003E0u003C/strongu003E")
content.append("

Resource not online u003Cstrongu003E0u003C/strongu003E")
content.append("

Resource loaded u003Cstrongu003E0u003C/strongu003E")

dest.append(content);
container.append(dest);

// initialize
container.masonry(
itemSelector : '.connected'
);

l.updateCounter(linkingList.length, counter, errors);
l.grabSingleResource(linkingList, counter, errors, map);

,
grabSingleResource : function(linkingList, counter, errors, map)
var l = this;
if (counter < linkingList.length)
var linking = $('#lodCloud').children("div");
$.ajax(
url : "http://data.bibliotheken.nl/linkedResource",
method : 'POST',
timeout : 10000, // 5 sec.
data :
"IRI" : linkingList[counter]
,
beforeSend : function()
// console.debug(counter + " -- " + linkingList[counter])
,
success : function(data)
data = $(data);
var dest = $('

');
data.find('img:first').each(function()
dest.append("");
);
var title = (data.find('title').text() != 'null' ? data.find('title').text() : "");

if (data.find('img:first').length == 0 && data.find('longitude').text().replace(/null/, '') && data.find('latitude').text().replace(/null/, ''))
var id = new Date().getMilliseconds();
var map = $('');
dest.append(map);


l.setErrorImage(dest.find('img'));

var content = $("
");
content.append("
" + title + "");

var IRI = data.find('root').attr('about');
content.append("
" + IRI.replace(/([^a-zA-Z0-9])/g, '$1​') + "");
if ($.trim(data.find('description').text()))
var descr = data.find('description').text() + " @" + data.find('description').attr("lang");
descr = descr.replace(/@(null
dest.append(content);

var tot = data.find('links').attr("tot");
if (parseInt(tot, 10) > 0)
dest.append("
" + tot + " " + (tot == 1 ? "connected resource" : "connected resources") + "")

dest.find('img').on('load', function()
linking.masonry();
).each(function()
if (this.complete)
$(this).load();

);
counter++;
if (!data.find('root').attr('error'))
linking.masonry().append(dest).masonry('appended', dest);
if (dest.find('map').length > 0)
l.drawMap(dest.find('map').attr("id"), data.find('latitude').text(), data.find('longitude').text(), title);

data.find('link').each(function()
var a = $(this).attr("href");
if ($.inArray(a, linkingList) == -1 && a != "http://data.bibliotheken.nl/id/thes/p242636462")
linkingList.push(a);

);
else
errors++;

linking.masonry();
l.grabSingleResource(linkingList, counter, errors, map);
l.updateCounter(linkingList.length, counter, errors);
,
error : function(e)
l.updateCounter(linkingList.length, (counter + 1), (errors + 1));
l.grabSingleResource(linkingList, (counter + 1), (errors + 1), map);
,
complete : function()

);
else
$('.connected').find('.lloading').fadeOut();

,
lMessage : function(msg, action)
var l = this;
var lp = $('#loadPanel');
if (action)
if (action == 'open')
if (isChrome)
// moving the panel to the center of the page
lp.addClass("cfix");

lp.fadeIn('fast');
else
lp.delay(2000).fadeOut('fast');


if (msg)
lp.queue(function()
setTimeout(function()
lp.find('.content').remove();
lp.find('#lmessage').append("" + msg + "");
lp.dequeue();
, action == 'open' ? 0 : 2000);
);

,
slideNext : function(obj)
var l = this;
obj.next().slideDown('fast', function()
l.slideNext($(this));
);
,
updateCounter : function(tot, count, errors)
var g = $('#lmessage > .content');
g.children('strong').html(count);
g.children('span:last').html(tot);
var b = $('#counterBlock');
b.find('p#grabDataTotal > strong').html(tot);
b.find('p#grabDataTotalLoaded > strong').html(count - errors);
b.find('p#grabDataTotalErrors > strong').html(errors);
,
footer : function()
$('#endpoint').find('.viewas').find('a').click(function()
var loc = document.location.href;
loc = loc.replace(/#[^#]+/, '');
if (loc.indexOf("?") != -1)
loc += "&output=" + $(this).attr("title");
else
loc += "?output=" + $(this).attr("title");

document.location = loc;
);
,
setErrorImage : function(obj)
obj.error(function()
$(this).attr("title", "image not available, broken URL?n" + $(this).attr("src"));
$(this).attr("src", "http://data.bibliotheken.nl/staticResources/img/no_image" + (isRetina ? "@2x" : "") + ".png");
$(this).addClass("errorImg");
$(this).unwrap("a");
);
,
rNavigator : function()
var l = this;
$('#navigator').find('.top').hover(function()
var e = $(this);
if (window.scrollY > 0)
e.addClass('hover');
var a = $('
');
a.click(function()
$('body').scrollTo(0, , function()
a.parent().trigger('mouseleave');
a.parent().trigger('mouseenter');
);
return false;
);
e.prepend(a);
e.prepend("to top");

, function()
$(this).removeClass('hover');
$(this).find('span , a').remove();
);
$('#navigator').find('.up').hover(function()
var y = window.scrollY;
var prev = null;
var e = $(this);
$.each(paginator, function(k, v)
if (v && v.position() && y > v.position().top)
prev = ;
prev[k] = v;

);
if (prev)
$.each(prev, function(k, v)
e.addClass('hover');
var a = $('
');
a.click(function()
$('body').scrollTo(v.position().top, , function()
a.parent().trigger('mouseleave');
a.parent().trigger('mouseenter');
);
return false;
);
e.prepend(a);
e.prepend('' + k + '');
);

, function()
$(this).removeClass('hover');
$(this).find('span , a').remove();
);
$('#navigator').find('.down').hover(function()
var y = window.scrollY + 1;
var next = null;
var e = $(this);
$.each(paginator, function(k, v)
if (!next && v && v.position() && y < v.position().top && y + window.innerHeight < $(document).height())
next = ;
next[k] = v;

);
if (next)
$.each(next, function(k, v)
e.addClass('hover');
var a = $('
');
a.click(function()
$('body').scrollTo(v.position().top, , function()
a.parent().trigger('mouseleave');
a.parent().trigger('mouseenter');
);
return false;
);
e.prepend(a);
e.prepend('' + k + '');
);

, function()
$(this).removeClass('hover');
$(this).find('span , a').remove();
);
$.fn.scrollTo = function(target, options, callback)
if (typeof options == 'function' && arguments.length == 2)
callback = options;
options = target;

var settings = $.extend(
scrollTarget : target,
offsetTop : 50,
duration : 200,
easing : 'swing'
, options);
return this.each(function()
var scrollPane = $(this);
var scrollTarget = (typeof settings.scrollTarget == "number") ? settings.scrollTarget : $(settings.scrollTarget);
var scrollY = (typeof scrollTarget == "number") ? scrollTarget : scrollTarget.offset().top + scrollPane.scrollTop() - parseInt(settings.offsetTop);
scrollPane.animate(
scrollTop : scrollY
, parseInt(settings.duration), settings.easing, function()
if (typeof callback == 'function')
callback.call(this);

);
);

// adding naturalWidth and naturalHeight to images
function img(url)
var i = new Image;
i.src = url;
return i;

var props = [ 'Width', 'Height' ], prop;
while (prop = props.pop())
(function(natural, prop)
$.fn[natural] = (natural in new Image()) ? function()
return this[0][natural];
: function()
var node = this[0], img, value;

if (node.tagName.toLowerCase() === 'img')
img = new Image();
img.src = node.src, value = img[prop];

return value;
;
('natural' + prop, prop.toLowerCase()));

,
setColumnsSize : function(secondTrip)
$('.c1').each(function()
var s = $(this).width();
if (secondTrip)
// occurs after web font rendering
s = s - 8;

if (s > col1)
col1 = s;

);
$('.c2').animate(
// 24 = main padding
marginLeft : col1 + 24,
marginTop : 0
, 'slow', 'swing', function()
$('.c2').css(
visibility : 'visible'
);
);
$('.c3').each(function()
var s = $(this).width();
if (s > col3)
col3 = s;

);
$('.c4').each(function()
var h = $(this).prev('.c3').height();
$(this).animate(
// 24 = main padding
marginLeft : col3 + 24,
marginTop : 0
, 'slow');
);


;


 




Popular posts from this blog

Isurus Índice Especies | Notas | Véxase tamén | Menú de navegación"A compendium of fossil marine animal genera (Chondrichthyes entry)"o orixinal"A review of the Tertiary fossil Cetacea (Mammalia) localities in wales port taf Museum Victoria"o orixinalThe Vertebrate Fauna of the Selma Formation of Alabama. Part VII. Part VIII. The Mosasaurs The Fishes50419737IDsh85068767Isurus2548834613242066569678159923NHMSYS00210535017845105743

Король Коль Исторические данные | Стихотворение | Примечания | Навигацияверсии1 правкаверсии1 правкаA New interpretation of the 'Artognou' stone, TintagelTintagel IslandАрхивировано

Roughly how much would it cost to hire a team of dwarves to build a home in the mountainside? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How much does a house cost?How long does it take to mine rock?How much does a house cost?How much gold would the construction of a forge cost?How much does a door cost?How much would it cost to make this magic item?How much would a glue bomb cost?How much does mandrake root cost?How much does a slave cost?How much does equipment cost?How much do sheep cost?How much would firearms cost?