← Back to Index

Jellybooks

Experimental Innovation · 阅读实验

Layouts
360°
Reading View
A+
Innovation

Design Philosophy

Jellybooks 代表了数字阅读体验的实验性前沿。核心理念是"阅读即探索"——打破传统书籍的线性呈现方式,通过动态布局、交叠排版和交互式阅读重新定义数字阅读。珊瑚色、薄荷绿点缀深色背景,传达活泼且富有创意的品牌个性。

Design Tokens

Dark Base

#0d0d0d
#1a1a1a
#252525
#f5f0e6

Accent Palette

#ff6b6b
#4ecdc4
#ffd93d

Typography

Playfair Display — Editorial Elegance

+ Inter for body text

Spacing

4 / 8 / 12 / 16 / 24 / 32 / 48 / 64

Experimental Layout

Reading
Reimagined
/* Experimental Type */ .experimental-type { font-family: "Playfair Display", serif; animation: typeWiggle 4s ease-in-out infinite; transform-origin: center bottom; } /* Skewed Container */ .skewed-card { transform: rotate(-0.5deg); transition: transform 0.3s ease; } .skewed-card:hover { transform: rotate(0deg) scale(1.02); }

CSS Implementation

/* Book Card with Glow */ .jelly-card { background: var(--jelly-dark); border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; } .jelly-card:hover { border-color: var(--jelly-mint); } /* Light Sweep Effect */ .jelly-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient( 90deg, transparent, rgba(78, 205, 196, 0.1), transparent ); transition: left 0.5s ease; }

Key Insights