Journal list menu
Skip to Main Content
if(true) {
document.getElementById("skipNavigationLink").onclick =function skipElement () {
var element = document.getElementById('main-content');
if(element == null || element == undefined) {
element = document.getElementsByClassName('main-content').item(0);
}
element.setAttribute('tabindex','0');
element.focus();
}
}
.19331592-featured-bg {
background-image: url(https://wol-prod-cdn.literatumonline.com/pb-assets/images/publications/19331592/background/featured.jpg);
}
(function ($) {
function init() {
$('.slideshowWidget').each(function () {
var $slideshow = $(this);
// Generate the direct-to-slide navigation list
makeDirectNav($slideshow);
// enable the prev/next slide navigation functions
enablePrevNext($slideshow);
enableAnimation($slideshow);
pauseAnimation($slideshow);
bindTouchEvents($slideshow);
// delay load of images after this event handler is finished
setTimeout(function () {
exposeDelayedContent($slideshow);
}, 0);
});
}
function exposeDelayedContent($context) {
$context.find('noscript').each(function () {
var $n = $(this);
var t = $n.text() || $n.attr('alt');
// Sometimes we get the text XML escaped, un-escape if needed
if (t.indexOf('<') == -1) t = $('').html(t).text();
$n.after(t);
}
).remove();
}
function activateSlide($slideshow, $slide) {
// ignore clicks on current slide
if ($slide.hasClass('active')) return;
// Ignore clicks if the slides in pause state
if($slideshow.hasClass('pause')) return;
// make nav selector inactive by removing "active" class
var $currentSlide = $slideshow.find('li.active');
$currentSlide.removeClass('active');
// get the slide number from the clicked list item text
var newSlideNum = $slide.attr('data-relatedSlide');
var newSlideClass = "slide" + newSlideNum;
var $newSlide = $slideshow.find('.' + newSlideClass);
exposeDelayedContent($newSlide);
// when "fade" animation is selected
if ($slideshow.hasClass("animate-fade")) {
// show the slide with fadein animation
$slideshow.find('div.slide:visible').stop(true, true).fadeOut(500);
$newSlide.stop(true, true).fadeIn(500);
populateCaption($slideshow, $newSlide);
}
// when "slide" animation is selected
else if ($slideshow.hasClass("animate-slide")) {
var slideLeft = $newSlide.position().left;
$('.slides').animate(
{left:-slideLeft},
{duration:300, easing:"linear"}
);
populateCaption($slideshow, $newSlide);
$( window ).resize(function() {
var slideLeft = $newSlide.position().left;
$('.slides').css(
{left:-slideLeft}
);
});
}
// when "none" animation is selected
else {
// show the slide with fadein animation
$slideshow.find('div.slide:visible').hide();
$($newSlide).show();
populateCaption($slideshow, $newSlide);
}
// set the clicked nav item to active
$slide.addClass('active');
}
function makeDirectNav($slideshow) {
var numSlides = $slideshow.find('.slide').length;
// create a navigation list based on the total number of slides
var $navIndicator = $slideshow.find('ul.navIndicator');
$navIndicator.empty();
for (var n = 1; n 0) {
$currentSlide = $prev;
} else {
$currentSlide = $slideshow.find(".navIndicator li").last();
}
activateSlide($slideshow, $currentSlide);
}
function nextSlide($slideshow) {
var $currentSlide = $slideshow.find('.navIndicator li.active');
var $next = $currentSlide.next();
if ($next.length > 0) {
$currentSlide = $next;
} else {
$currentSlide = $slideshow.find(".navIndicator li").first();
}
activateSlide($slideshow, $currentSlide);
}
function enablePrevNext($slideshow) {
$('.slideNav', $slideshow).show();
$slideshow.find('.previousSlide').off().click(function() {
if($slideshow.hasClass('pause')) return;
previousSlide($slideshow);
});
$slideshow.find('.nextSlide').off().click(function() {
if($slideshow.hasClass('pause')) return;
nextSlide($slideshow);
})
}
function enableAnimation($slideshow) {
var autoplay = $slideshow.data('autoplay');
if (autoplay) {
clearInterval(autoplay);
}
// start autoplay; pause it when hovering over the slideshow and resume it when leaving
var autoplayTime = $('.autoplayTime', $slideshow).val();
if (autoplayTime) {
exposeDelayedContent($slideshow);
autoplayTime = autoplayTime * 1000;
function nextSlideFunc() {
var attached = $slideshow.closest('body').length;
if (!attached) {
// this slideshow was detached due to the widget-reload. finish it off.
disableAnimation($slideshow);
return;
}
nextSlide($slideshow);
}
autoplay = window.setInterval(nextSlideFunc, autoplayTime);
$slideshow.data('autoplay', autoplay);
$slideshow.off().bind({
mouseenter:function () {
clearInterval(autoplay);
},
mouseleave:function () {
enableAnimation($slideshow);
}
});
}
}
function pauseAnimation($slideShow) {
var pauseBtn = $($slideShow).find('.playSlide');
if(pauseBtn.length > 0) {
pauseBtn.on('click keypress' ,function(e) {
var eType = e.type;
if (eType == 'click' || (eType == 'keypress' && e.which == 13)) {
$slideShow.toggleClass('pause');
pauseBtn.toggleClass('pauseSlide');
}
});
}
}
function disableAnimation($slideshow) {
var autoplay = $slideshow.data('autoplay');
if (autoplay) {
// disable it permanently
$('.autoplayTime', $slideshow).remove();
clearInterval(autoplay);
}
}
function populateCaption($slideshow, $slide) {
var $slideshowCaption = $slideshow.find('div.slideshowCaption');
var caption = $slide.find('div.slideCaption').html() || "";
$slideshowCaption.html(caption);
}
function bindTouchEvents($slideshow){
var holder = $slideshow.find(".slidePort"),
touchstartx= undefined,
touchmovex= undefined,
movex,
longTouch= undefined,
slideWidth= holder.width(),
touchstarty = undefined,
touchmovey = undefined;
holder.on("touchstart", function(event) {
touchStart(event);
});
holder.on("touchmove", function(event) {
touchMove(event);
});
holder.on("touchend", function(event) {
touchEnd(event);
});
function touchStart(event){
// Test for flick.
longTouch = false;
setTimeout(function() {
longTouch = true;
}, 250);
// Get the original touch position.
touchstartx = event.originalEvent.touches[0].pageX;
touchstarty = event.originalEvent.touches[0].pageY;
//reset movex on every touch on the slider
movex= undefined;
}
function touchMove(event){
// Continuously return touch position.
touchmovex = event.originalEvent.touches[0].pageX;
touchmovey = event.originalEvent.touches[0].pageY;
// Calculate distance to translate holder.
movex = slideWidth + (touchstartx - touchmovex);
}
function touchEnd(event){
// Calculate the distance swiped.
if(movex != undefined){
var absMovex = Math.abs(slideWidth - movex);
var absMovey = Math.abs(touchmovey - touchstarty);
// skip sliding if the user was just moving vertically on the page
if(!(absMovey > absMovex)) {
if (absMovex > slideWidth/4 || longTouch === false) {
if (touchmovex > touchstartx) {
previousSlide($slideshow);
} else{
nextSlide($slideshow);
}
}
}
}
}
}
function createNavigationElement(index) {
var elem = $('');
elem.attr('aria-describedby', 'offscreen' + index);
elem.attr('data-relatedSlide',index);
if(parseInt(index) == 1) {
elem.attr('class','active');
}
var descriptionHeader = $('');
descriptionHeader.attr('id', 'offscreen' + index);
descriptionHeader.html('show Slide ' + index);
var descriptionSpan = $('');
descriptionSpan.html(index);
descriptionHeader.appendTo(elem);
descriptionSpan.appendTo(elem);
return elem;
}
$(document).ready(init);
if (window.PB && window.PB.$) {
// make this module reinitializes in design mode
//window.PB.$(document.documentElement).on("ScopeModified ScopeLoaded WidgetReloaded", init);
window.PB.$(document.documentElement).on("WidgetReinit.genericSlideshow WidgetReinit.imageSlideshow", init);
}
})(jQuery);
- This Journal
- Anywhere
Journal list menu
li.menu-item[aria-label="Accepted Articles"] {
display: none;
}
Philosophy and Phenomenological Research
var image = new Image();
image.onload = function() {
// if the image exists
document.getElementById("journal-banner-image").style.display = "block";
}
image.onerror = function() {
// if the image does not exist
document.getElementById("journal-banner-text").style.marginBottom = "15px";
document.getElementById("journal-banner-text").style.fontSize = "22px";
}
image.src = "https://wol-prod-cdn.literatumonline.com/pb-assets/journal-banners/19331592-1518177644350.jpg";
Edited By: Ernest Sosa
Online ISSN:1933-1592
© Philosophy and Phenomenological Research, LLC
Philosophy and Phenomenological Research (PPR), a premier philosophy journal, publishes articles that make standalone, substantial contributions. It ranges across the full breadth of philosophy and its history. No particular methodology is required.
Articles
- Most Recent
- Most Cited
Evidence: A Guide for the Uncertain
- Kevin Dorst
- Philosophy and Phenomenological Research
 2 January 2019
- Abstract
- Full text
- References
- Request permissions
Conditional Heresies
- Fabrizio Cariani
- Simon Goldstein
- Philosophy and Phenomenological Research
 21 December 2018
- Abstract
- Full text
- References
- Request permissions
Might Moral Epistemologists Be Asking The Wrong Questions?
- Caleb Perl
- Philosophy and Phenomenological Research
 14 December 2018
- Full text
- References
- Request permissions
Modal Virtue Epistemology
- Bob Beddor
- Carlotta Pavese
- Philosophy and Phenomenological Research
 10 December 2018
- Full text
- References
- Request permissions
The Duty to Object
- Jennifer Lackey
- Philosophy and Phenomenological Research
 9 December 2018
- Abstract
- Full text
- References
- Request permissions
more >
The following is a list of the most cited articles based on citations published in the last three years, according to CrossRef.
Cognitive Penetration of Colour Experience: Rethinking the Issue in Light of an Indirect Mechanism
- FIONA MACPHERSON
- Philosophy and Phenomenological Research
 24-62
 17 February 2011
- Full text
- References
- Request permissions
Experts: Which Ones Should You Trust?
- ALVIN I. GOLDMAN
- Philosophy and Phenomenological Research
 85-110
 29 May 2007
- References
- Request permissions
Higher‐Order Evidence1
- DAVID CHRISTENSEN
- Philosophy and Phenomenological Research
 185-215
 30 June 2010
- Full text
- References
- Request permissions
Is Semantic Information Meaningful Data?
- LUCIANO FLORIDI
- Philosophy and Phenomenological Research
 351-370
 29 May 2007
- Abstract
- References
- Request permissions
Compassionate Phenomenal Conservatism
- MICHAEL HUEMER
- Philosophy and Phenomenological Research
 30-55
 20 March 2007
- Abstract
- Full text
- References
- Request permissions
more >
Recent issues
IssueVolume 97, Issue 3
541-792
November 2018
IssueVolume 97, Issue 2
265-540
September 2018
IssueVolume 97, Issue 1
1-263
July 2018
IssueVolume 96, Issue 3
515-802
May 2018
if(window._satellite) {
_satellite.pageBottom();
}
var _prum=[['id','59e8fecb3847311aab7b23c6'],['mark','firstbyte',(new Date()).getTime()]];(function(){var s=document.getElementsByTagName('script')[0],p=document.createElement('script');p.async='async';p.src='//rum-static.pingdom.net/prum.min.js';s.parentNode.insertBefore(p,s);})();