계열 위치 효과

Serial Position Effect

목록의 처음과 끝 항목은 잘 기억하고 중간은 잘 잊는다는 효과. 기억 곡선이 U자를 그립니다.

다른 이름: Primacy effectRecency effect
···
js
const svg = 'http://www.w3.org/2000/svg';
const root = document.body;
const wrap = document.createElement('div');
wrap.style.cssText = 'width:88%;display:grid;gap:10px;justify-items:center';
root.appendChild(wrap);
const svgEl = document.createElementNS(svg, 'svg');
svgEl.setAttribute('viewBox', '0 0 100 34');
svgEl.style.cssText = 'width:100%;height:70px';
const path = document.createElementNS(svg, 'path');
path.setAttribute('d', 'M4,6 C 22,26 40,30 50,30 C 60,30 78,26 96,6');
path.setAttribute('fill', 'none');
path.setAttribute('stroke', 'var(--accent)');
path.setAttribute('stroke-width', '2.5');
path.setAttribute('stroke-linecap', 'round');
const len = 140;
path.style.strokeDasharray = len;
path.style.strokeDashoffset = len;
path.style.animation = 'draw 2.4s ease-in-out infinite';
svgEl.appendChild(path);
wrap.appendChild(svgEl);
const list = document.createElement('div');
list.style.cssText = 'display:flex;gap:6%;width:100%';
wrap.appendChild(list);
const items = [];
for (let i = 0; i < 7; i++) {
  const it = document.createElement('div');
  it.style.cssText = 'flex:1;height:26px;border-radius:6px;background:var(--line);transition:opacity 1s ease,background 1s ease';
  list.appendChild(it);
  items.push(it);
}
function apply() {
  items.forEach((it, i) => {
    const strong = i === 0 || i === items.length - 1;
    it.style.opacity = strong ? '1' : String(0.35 + 0.1 * Math.abs(i - 3) / 3);
    it.style.background = strong ? 'var(--accent)' : 'var(--line)';
  });
}
apply();
const style = document.createElement('style');
style.textContent = '@keyframes draw{0%{stroke-dashoffset:140}60%,100%{stroke-dashoffset:0}}';
document.head.appendChild(style);

심리학자 헤르만 에빙하우스(Hermann Ebbinghaus)가 처음 관찰했고, 이후 실험심리학에서 초두 효과(primacy: 처음 것이 장기기억으로 넘어갈 시간이 있었다)와 최신 효과(recency: 끝 것이 아직 단기기억에 생생하다)로 세분화됐습니다.

내비게이션 메뉴·목록에서 가장 중요한 항목을 맨 앞이나 맨 끝에 두면 기억·클릭률이 올라갑니다. 온라인 쇼핑 리뷰에서 중간 순위 상품이 첫/끝 상품보다 불리한 것도 같은 이유입니다.

데모의 곡선이 U자로 그려지고, 목록의 첫 항목과 끝 항목만 빛나며 중간은 흐려집니다 — 실제 기억 강도를 시각화한 것입니다.

언제 쓰나

내비게이션·목록의 항목 순서를 정할 때, 가장 알리고 싶은 것을 맨 앞이나 맨 끝에 두세요. 중간은 "묻히는 자리"라고 생각하고 배치하세요.