学习目标

  • 理解GitHub设计系统的核心原则和视觉语言
  • 掌握GitHub界面的布局架构和组织方式
  • 识别GitHub常用的UI元素和组件模式
  • 学会使用Tailwind CSS表达GitHub的设计细节
  • 建立复刻GitHub界面的基础视觉参考系统

GitHub界面设计概述

GitHub的界面设计以其简洁、高效和一致性著称。作为一个面向开发者的平台,GitHub注重功能性和可用性,同时保持视觉上的清爽和专业。在开始复刻之前,我们需要深入分析GitHub的设计系统,包括其布局结构、色彩系统、排版规则和组件模式。

GitHub设计的核心特点

  • 功能优先:界面元素以支持用户工作流为中心
  • 视觉层次清晰:信息组织有明确的视觉权重
  • 一致的设计语言:整个平台保持统一的视觉元素和交互模式
  • 适度的视觉装饰:简洁但不单调,关键处有恰到好处的视觉强调
  • 响应式设计:从移动设备到大屏幕都有良好的用户体验

GitHub的色彩系统分析

GitHub的色彩系统基于中性色调,配以功能性的强调色。我们先创建一个简单的色彩参考表,以便在复刻时准确使用Tailwind自定义颜色。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub颜色系统 - Tailwind CSS复刻</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. colors: {
  13. github: {
  14. blue: '#0969da',
  15. green: '#2da44e',
  16. red: '#cf222e',
  17. yellow: '#bf8700',
  18. purple: '#8250df',
  19. gray: {
  20. bg: '#f6f8fa',
  21. border: '#d0d7de',
  22. text: '#24292f',
  23. secondary: '#57606a'
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }
  30. </script>
  31. </head>
  32. <body class="p-8 bg-white">
  33. <h1 class="text-2xl font-bold mb-6">GitHub色彩系统</h1>
  34. <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mb-8">
  35. <!-- 主要颜色 -->
  36. <div class="p-4 rounded shadow-sm">
  37. <div class="h-16 bg-github-blue rounded mb-2"></div>
  38. <p class="font-medium">主要蓝色 (Primary Blue)</p>
  39. <p class="text-sm text-github-gray-secondary">#0969da</p>
  40. <p class="text-sm mt-1">用于:主按钮、链接、活动指示器</p>
  41. </div>
  42. <div class="p-4 rounded shadow-sm">
  43. <div class="h-16 bg-github-green rounded mb-2"></div>
  44. <p class="font-medium">成功绿色 (Success Green)</p>
  45. <p class="text-sm text-github-gray-secondary">#2da44e</p>
  46. <p class="text-sm mt-1">用于:成功状态、创建按钮、开放状态</p>
  47. </div>
  48. <div class="p-4 rounded shadow-sm">
  49. <div class="h-16 bg-github-red rounded mb-2"></div>
  50. <p class="font-medium">错误红色 (Error Red)</p>
  51. <p class="text-sm text-github-gray-secondary">#cf222e</p>
  52. <p class="text-sm mt-1">用于:错误状态、删除操作、关闭状态</p>
  53. </div>
  54. <div class="p-4 rounded shadow-sm">
  55. <div class="h-16 bg-github-yellow rounded mb-2"></div>
  56. <p class="font-medium">警告黄色 (Warning Yellow)</p>
  57. <p class="text-sm text-github-gray-secondary">#bf8700</p>
  58. <p class="text-sm mt-1">用于:警告消息、待处理状态</p>
  59. </div>
  60. <div class="p-4 rounded shadow-sm">
  61. <div class="h-16 bg-github-purple rounded mb-2"></div>
  62. <p class="font-medium">合并紫色 (Merge Purple)</p>
  63. <p class="text-sm text-github-gray-secondary">#8250df</p>
  64. <p class="text-sm mt-1">用于:合并状态、Pull Request相关元素</p>
  65. </div>
  66. </div>
  67. <!-- 中性色 -->
  68. <h2 class="text-xl font-bold mb-4">中性色彩</h2>
  69. <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
  70. <div class="p-4 rounded shadow-sm">
  71. <div class="h-16 bg-github-gray-bg rounded mb-2"></div>
  72. <p class="font-medium">背景灰 (Background Gray)</p>
  73. <p class="text-sm text-github-gray-secondary">#f6f8fa</p>
  74. <p class="text-sm mt-1">用于:次要背景、代码块背景</p>
  75. </div>
  76. <div class="p-4 rounded shadow-sm">
  77. <div class="h-16 bg-github-gray-border rounded mb-2"></div>
  78. <p class="font-medium">边框色 (Border Color)</p>
  79. <p class="text-sm text-github-gray-secondary">#d0d7de</p>
  80. <p class="text-sm mt-1">用于:边框、分割线</p>
  81. </div>
  82. <div class="p-4 rounded shadow-sm">
  83. <div class="h-16 bg-github-gray-text rounded mb-2"></div>
  84. <p class="font-medium">文本主色 (Primary Text)</p>
  85. <p class="text-sm text-white">#24292f</p>
  86. <p class="text-sm mt-1 text-white">用于:主要文本内容</p>
  87. </div>
  88. <div class="p-4 rounded shadow-sm">
  89. <div class="h-16 bg-github-gray-secondary rounded mb-2"></div>
  90. <p class="font-medium">次要文本 (Secondary Text)</p>
  91. <p class="text-sm text-white">#57606a</p>
  92. <p class="text-sm mt-1 text-white">用于:次要文本、说明文字</p>
  93. </div>
  94. </div>
  95. </body>
  96. </html>

这个示例展示了GitHub的核心颜色系统,并通过Tailwind的配置扩展了自定义颜色。在实际项目中,我们会将这些配置放在tailwind.config.js文件中。

GitHub的排版系统分析

GitHub的排版系统使用系统字体栈,强调可读性和跨平台一致性。让我们分析GitHub的文本层级和排版风格:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub排版系统 - Tailwind CSS复刻</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. colors: {
  13. github: {
  14. blue: '#0969da',
  15. gray: {
  16. text: '#24292f',
  17. secondary: '#57606a'
  18. }
  19. }
  20. },
  21. fontFamily: {
  22. github: [
  23. '-apple-system',
  24. 'BlinkMacSystemFont',
  25. 'Segoe UI',
  26. 'Helvetica',
  27. 'Arial',
  28. 'sans-serif',
  29. 'Apple Color Emoji',
  30. 'Segoe UI Emoji'
  31. ]
  32. }
  33. }
  34. }
  35. }
  36. </script>
  37. </head>
  38. <body class="p-8 bg-white font-github">
  39. <h1 class="text-github-gray-text text-3xl font-semibold mb-6">GitHub排版系统</h1>
  40. <div class="max-w-3xl">
  41. <!-- 标题层级 -->
  42. <section class="mb-8">
  43. <h2 class="text-xl font-semibold mb-4 text-github-gray-text border-b border-github-gray-border pb-2">标题层级</h2>
  44. <div class="space-y-4">
  45. <div>
  46. <h1 class="text-3xl font-semibold text-github-gray-text">H1 标题 (24px)</h1>
  47. <p class="text-sm text-github-gray-secondary mt-1">用于:页面主标题</p>
  48. </div>
  49. <div>
  50. <h2 class="text-2xl font-semibold text-github-gray-text">H2 标题 (20px)</h2>
  51. <p class="text-sm text-github-gray-secondary mt-1">用于:主要区块标题</p>
  52. </div>
  53. <div>
  54. <h3 class="text-xl font-semibold text-github-gray-text">H3 标题 (16px)</h3>
  55. <p class="text-sm text-github-gray-secondary mt-1">用于:子区块标题</p>
  56. </div>
  57. <div>
  58. <h4 class="text-base font-semibold text-github-gray-text">H4 标题 (14px)</h4>
  59. <p class="text-sm text-github-gray-secondary mt-1">用于:卡片或面板标题</p>
  60. </div>
  61. </div>
  62. </section>
  63. <!-- 正文文本 -->
  64. <section class="mb-8">
  65. <h2 class="text-xl font-semibold mb-4 text-github-gray-text border-b border-github-gray-border pb-2">正文文本</h2>
  66. <div class="space-y-4">
  67. <div>
  68. <p class="text-base text-github-gray-text">基础文本 (14px)</p>
  69. <p class="text-sm text-github-gray-secondary mt-1">用于:主要内容文本</p>
  70. </div>
  71. <div>
  72. <p class="text-sm text-github-gray-text">小型文本 (12px)</p>
  73. <p class="text-sm text-github-gray-secondary mt-1">用于:次要信息、标签、时间戳</p>
  74. </div>
  75. <div>
  76. <p class="text-xs text-github-gray-text">微型文本 (11px)</p>
  77. <p class="text-sm text-github-gray-secondary mt-1">用于:极小提示、次要标签</p>
  78. </div>
  79. </div>
  80. </section>
  81. <!-- 链接样式 -->
  82. <section class="mb-8">
  83. <h2 class="text-xl font-semibold mb-4 text-github-gray-text border-b border-github-gray-border pb-2">链接样式</h2>
  84. <div class="space-y-4">
  85. <div>
  86. <a href="#" class="text-github-blue hover:underline">基础链接</a>
  87. <p class="text-sm text-github-gray-secondary mt-1">用于:正文中的链接</p>
  88. </div>
  89. <div>
  90. <a href="#" class="text-github-gray-text hover:text-github-blue hover:underline">次要链接</a>
  91. <p class="text-sm text-github-gray-secondary mt-1">用于:导航、次要操作</p>
  92. </div>
  93. </div>
  94. </section>
  95. </div>
  96. </body>
  97. </html>

通过这个示例,我们展示了GitHub的文本层级、字体系统和链接样式,为后续复刻奠定基础。

GitHub布局系统分析

GitHub的布局系统基于网格和卡片组织内容,有清晰的层次结构。下面我们将分析GitHub的几种核心布局模式:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub布局系统 - Tailwind CSS复刻</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. colors: {
  13. github: {
  14. blue: '#0969da',
  15. gray: {
  16. bg: '#f6f8fa',
  17. border: '#d0d7de',
  18. text: '#24292f',
  19. secondary: '#57606a'
  20. }
  21. }
  22. },
  23. maxWidth: {
  24. 'github-content': '1280px',
  25. 'github-text': '720px'
  26. }
  27. }
  28. }
  29. }
  30. </script>
  31. </head>
  32. <body class="bg-white text-github-gray-text">
  33. <header class="border-b border-github-gray-border">
  34. <div class="max-w-github-content mx-auto px-4 py-4 flex items-center justify-between">
  35. <div class="text-xl font-bold">GitHub布局系统</div>
  36. <nav class="hidden md:block">
  37. <ul class="flex space-x-6">
  38. <li><a href="#" class="text-github-gray-text hover:text-github-blue">顶部导航</a></li>
  39. <li><a href="#" class="text-github-gray-text hover:text-github-blue">布局类型</a></li>
  40. <li><a href="#" class="text-github-gray-text hover:text-github-blue">容器尺寸</a></li>
  41. <li><a href="#" class="text-github-gray-text hover:text-github-blue">间距系统</a></li>
  42. </ul>
  43. </nav>
  44. <button class="md:hidden">
  45. <!-- 汉堡菜单图标 -->
  46. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
  47. <path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
  48. </svg>
  49. </button>
  50. </div>
  51. </header>
  52. <main class="max-w-github-content mx-auto px-4 py-6">
  53. <h1 class="text-2xl font-semibold mb-6">GitHub主要布局模式</h1>
  54. <!-- 布局类型 -->
  55. <section class="mb-12">
  56. <h2 class="text-xl font-semibold mb-4 border-b border-github-gray-border pb-2">主要布局类型</h2>
  57. <!-- 单栏布局 -->
  58. <div class="mb-8">
  59. <h3 class="text-lg font-medium mb-3">1. 单栏布局</h3>
  60. <p class="text-github-gray-secondary mb-4">用于:登录页、简单信息页</p>
  61. <div class="border border-github-gray-border rounded-md overflow-hidden">
  62. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  63. <span class="font-medium">单栏内容示例</span>
  64. </div>
  65. <div class="p-6">
  66. <div class="max-w-github-text mx-auto bg-white p-4 border border-github-gray-border rounded-md">
  67. <p>单栏布局通常用于内容居中的页面,整体宽度有最大限制。</p>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. <!-- 双栏布局 -->
  73. <div class="mb-8">
  74. <h3 class="text-lg font-medium mb-3">2. 双栏布局 (主内容 + 侧边栏)</h3>
  75. <p class="text-github-gray-secondary mb-4">用于:仓库页面、个人资料页</p>
  76. <div class="border border-github-gray-border rounded-md overflow-hidden">
  77. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  78. <span class="font-medium">双栏布局示例</span>
  79. </div>
  80. <div class="p-6">
  81. <div class="grid grid-cols-1 md:grid-cols-4 gap-6">
  82. <div class="md:col-span-1">
  83. <div class="bg-white p-4 border border-github-gray-border rounded-md">
  84. <p class="font-medium mb-2">侧边栏</p>
  85. <p class="text-sm text-github-gray-secondary">通常包含导航、过滤器或辅助信息</p>
  86. </div>
  87. </div>
  88. <div class="md:col-span-3">
  89. <div class="bg-white p-4 border border-github-gray-border rounded-md">
  90. <p class="font-medium mb-2">主内容区</p>
  91. <p class="text-sm text-github-gray-secondary">展示页面的主要内容</p>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. <!-- 三栏布局 -->
  99. <div class="mb-8">
  100. <h3 class="text-lg font-medium mb-3">3. 三栏布局</h3>
  101. <p class="text-github-gray-secondary mb-4">用于:代码审查页、Pull Request详情</p>
  102. <div class="border border-github-gray-border rounded-md overflow-hidden">
  103. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  104. <span class="font-medium">三栏布局示例</span>
  105. </div>
  106. <div class="p-6">
  107. <div class="grid grid-cols-1 lg:grid-cols-6 gap-4">
  108. <div class="lg:col-span-1">
  109. <div class="bg-white p-3 border border-github-gray-border rounded-md">
  110. <p class="font-medium mb-1">左侧栏</p>
  111. <p class="text-xs text-github-gray-secondary">导航/文件树</p>
  112. </div>
  113. </div>
  114. <div class="lg:col-span-4">
  115. <div class="bg-white p-3 border border-github-gray-border rounded-md">
  116. <p class="font-medium mb-1">主内容区</p>
  117. <p class="text-xs text-github-gray-secondary">代码、差异对比等</p>
  118. </div>
  119. </div>
  120. <div class="lg:col-span-1">
  121. <div class="bg-white p-3 border border-github-gray-border rounded-md">
  122. <p class="font-medium mb-1">右侧栏</p>
  123. <p class="text-xs text-github-gray-secondary">审阅者/元数据</p>
  124. </div>
  125. </div>
  126. </div>
  127. </div>
  128. </div>
  129. </div>
  130. </section>
  131. <!-- 容器尺寸 -->
  132. <section class="mb-12">
  133. <h2 class="text-xl font-semibold mb-4 border-b border-github-gray-border pb-2">容器尺寸规范</h2>
  134. <div class="space-y-6">
  135. <div>
  136. <h3 class="text-lg font-medium mb-2">主内容区最大宽度</h3>
  137. <div class="bg-github-gray-bg p-4 rounded-md">
  138. <p class="mb-2"><code>max-w-github-content: 1280px</code></p>
  139. <p class="text-sm text-github-gray-secondary">用于:整个页面的最大宽度限制</p>
  140. </div>
  141. </div>
  142. <div>
  143. <h3 class="text-lg font-medium mb-2">文本内容最大宽度</h3>
  144. <div class="bg-github-gray-bg p-4 rounded-md">
  145. <p class="mb-2"><code>max-w-github-text: 720px</code></p>
  146. <p class="text-sm text-github-gray-secondary">用于:长文本、Markdown内容等</p>
  147. </div>
  148. </div>
  149. </div>
  150. </section>
  151. <!-- 间距系统 -->
  152. <section class="mb-12">
  153. <h2 class="text-xl font-semibold mb-4 border-b border-github-gray-border pb-2">间距系统</h2>
  154. <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
  155. <div>
  156. <h3 class="text-lg font-medium mb-3">水平间距</h3>
  157. <div class="border border-github-gray-border rounded-md p-4 space-y-4">
  158. <div>
  159. <div class="flex items-center">
  160. <div class="w-8 h-8 bg-github-blue rounded-md"></div>
  161. <div class="w-4 bg-red-200 h-8"></div>
  162. <div class="w-8 h-8 bg-github-blue rounded-md"></div>
  163. </div>
  164. <p class="text-sm text-github-gray-secondary mt-1">小间距: 16px (1rem)</p>
  165. </div>
  166. <div>
  167. <div class="flex items-center">
  168. <div class="w-8 h-8 bg-github-blue rounded-md"></div>
  169. <div class="w-6 bg-red-200 h-8"></div>
  170. <div class="w-8 h-8 bg-github-blue rounded-md"></div>
  171. </div>
  172. <p class="text-sm text-github-gray-secondary mt-1">中间距: 24px (1.5rem)</p>
  173. </div>
  174. <div>
  175. <div class="flex items-center">
  176. <div class="w-8 h-8 bg-github-blue rounded-md"></div>
  177. <div class="w-8 bg-red-200 h-8"></div>
  178. <div class="w-8 h-8 bg-github-blue rounded-md"></div>
  179. </div>
  180. <p class="text-sm text-github-gray-secondary mt-1">大间距: 32px (2rem)</p>
  181. </div>
  182. </div>
  183. </div>
  184. <div>
  185. <h3 class="text-lg font-medium mb-3">垂直间距</h3>
  186. <div class="border border-github-gray-border rounded-md p-4 space-y-4">
  187. <div>
  188. <div>
  189. <div class="h-8 w-20 bg-github-blue rounded-md"></div>
  190. <div class="h-4 w-20 bg-red-200"></div>
  191. <div class="h-8 w-20 bg-github-blue rounded-md"></div>
  192. </div>
  193. <p class="text-sm text-github-gray-secondary mt-1">小间距: 16px (1rem)</p>
  194. </div>
  195. <div>
  196. <div>
  197. <div class="h-8 w-20 bg-github-blue rounded-md"></div>
  198. <div class="h-6 w-20 bg-red-200"></div>
  199. <div class="h-8 w-20 bg-github-blue rounded-md"></div>
  200. </div>
  201. <p class="text-sm text-github-gray-secondary mt-1">中间距: 24px (1.5rem)</p>
  202. </div>
  203. <div>
  204. <div>
  205. <div class="h-8 w-20 bg-github-blue rounded-md"></div>
  206. <div class="h-8 w-20 bg-red-200"></div>
  207. <div class="h-8 w-20 bg-github-blue rounded-md"></div>
  208. </div>
  209. <p class="text-sm text-github-gray-secondary mt-1">大间距: 32px (2rem)</p>
  210. </div>
  211. </div>
  212. </div>
  213. </div>
  214. </section>
  215. </main>
  216. </body>
  217. </html>

通过这个布局分析示例,我们可以看到GitHub的几种常见布局模式,以及它们的间距和尺寸规范。

GitHub常见组件分析

GitHub有一套丰富的UI组件,下面我们分析一些核心组件的设计特点:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub组件分析 - Tailwind CSS复刻</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. colors: {
  13. github: {
  14. blue: '#0969da',
  15. green: '#2da44e',
  16. red: '#cf222e',
  17. yellow: '#bf8700',
  18. purple: '#8250df',
  19. gray: {
  20. bg: '#f6f8fa',
  21. border: '#d0d7de',
  22. text: '#24292f',
  23. secondary: '#57606a'
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }
  30. </script>
  31. </head>
  32. <body class="bg-white text-github-gray-text p-8">
  33. <h1 class="text-2xl font-semibold mb-8">GitHub核心组件分析</h1>
  34. <div class="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8">
  35. <!-- 按钮组件 -->
  36. <section class="border border-github-gray-border rounded-md overflow-hidden">
  37. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border font-medium">
  38. 按钮组件
  39. </div>
  40. <div class="p-6 space-y-6">
  41. <!-- 主要按钮 -->
  42. <div>
  43. <h3 class="text-sm font-medium mb-2">主要按钮</h3>
  44. <button class="bg-github-green hover:bg-opacity-90 text-white rounded-md px-3 py-1.5 text-sm font-medium">
  45. Create repository
  46. </button>
  47. <p class="text-xs text-github-gray-secondary mt-2">用于:主要操作、确认操作</p>
  48. </div>
  49. <!-- 次要按钮 -->
  50. <div>
  51. <h3 class="text-sm font-medium mb-2">次要按钮</h3>
  52. <button class="bg-github-gray-bg hover:bg-github-gray-border border border-github-gray-border rounded-md px-3 py-1.5 text-sm font-medium">
  53. Cancel
  54. </button>
  55. <p class="text-xs text-github-gray-secondary mt-2">用于:次要操作、取消操作</p>
  56. </div>
  57. <!-- 危险按钮 -->
  58. <div>
  59. <h3 class="text-sm font-medium mb-2">危险按钮</h3>
  60. <button class="bg-github-red hover:bg-opacity-90 text-white rounded-md px-3 py-1.5 text-sm font-medium">
  61. Delete repository
  62. </button>
  63. <p class="text-xs text-github-gray-secondary mt-2">用于:危险操作、删除操作</p>
  64. </div>
  65. <!-- 图标按钮 -->
  66. <div>
  67. <h3 class="text-sm font-medium mb-2">带图标按钮</h3>
  68. <button class="bg-github-gray-bg hover:bg-github-gray-border border border-github-gray-border rounded-md px-3 py-1.5 text-sm font-medium inline-flex items-center">
  69. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  70. <path stroke-linecap="round" stroke-linejoin="round" d="M11.48 3.499a.562.562 0 011.04 0l2.125 5.111a.563.563 0 00.475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 00-.182.557l1.285 5.385a.562.562 0 01-.84.61l-4.725-2.885a.563.563 0 00-.586 0L6.982 20.54a.562.562 0 01-.84-.61l1.285-5.386a.562.562 0 00-.182-.557l-4.204-3.602a.563.563 0 01.321-.988l5.518-.442a.563.563 0 00.475-.345L11.48 3.5z" />
  71. </svg>
  72. Star
  73. </button>
  74. <p class="text-xs text-github-gray-secondary mt-2">用于:包含图标的操作按钮</p>
  75. </div>
  76. </div>
  77. </section>
  78. <!-- 标签组件 -->
  79. <section class="border border-github-gray-border rounded-md overflow-hidden">
  80. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border font-medium">
  81. 标签组件
  82. </div>
  83. <div class="p-6 space-y-6">
  84. <!-- 状态标签 -->
  85. <div>
  86. <h3 class="text-sm font-medium mb-2">状态标签</h3>
  87. <div class="flex flex-wrap gap-2">
  88. <span class="bg-github-green bg-opacity-20 text-github-green text-xs px-2 py-0.5 rounded-full font-medium">
  89. Open
  90. </span>
  91. <span class="bg-github-red bg-opacity-20 text-github-red text-xs px-2 py-0.5 rounded-full font-medium">
  92. Closed
  93. </span>
  94. <span class="bg-github-purple bg-opacity-20 text-github-purple text-xs px-2 py-0.5 rounded-full font-medium">
  95. Merged
  96. </span>
  97. </div>
  98. <p class="text-xs text-github-gray-secondary mt-2">用于:标记议题、PR状态</p>
  99. </div>
  100. <!-- 分类标签 -->
  101. <div>
  102. <h3 class="text-sm font-medium mb-2">分类标签</h3>
  103. <div class="flex flex-wrap gap-2">
  104. <span class="bg-blue-500 text-white text-xs px-2 py-0.5 rounded-full font-medium">
  105. enhancement
  106. </span>
  107. <span class="bg-red-500 text-white text-xs px-2 py-0.5 rounded-full font-medium">
  108. bug
  109. </span>
  110. <span class="bg-green-600 text-white text-xs px-2 py-0.5 rounded-full font-medium">
  111. documentation
  112. </span>
  113. </div>
  114. <p class="text-xs text-github-gray-secondary mt-2">用于:对议题或PR进行分类</p>
  115. </div>
  116. <!-- 计数标签 -->
  117. <div>
  118. <h3 class="text-sm font-medium mb-2">计数标签</h3>
  119. <div class="flex items-center gap-2">
  120. <a href="#" class="text-github-gray-text hover:text-github-blue inline-flex items-center">
  121. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5 mr-1">
  122. <path stroke-linecap="round" stroke-linejoin="round" d="M9 3.75H6.912a2.25 2.25 0 00-2.15 1.588L2.35 13.177a2.25 2.25 0 00-.1.661V18a2.25 2.25 0 002.25 2.25h15A2.25 2.25 0 0021.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 00-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 012.012 1.244l.256.512a2.25 2.25 0 002.013 1.244h3.218a2.25 2.25 0 002.013-1.244l.256-.512a2.25 2.25 0 012.013-1.244h3.859M12 3v8.25m0 0l-3-3m3 3l3-3" />
  123. </svg>
  124. Issues
  125. <span class="ml-1 bg-github-gray-border bg-opacity-50 rounded-full px-2 py-0.5 text-xs text-github-gray-text">
  126. 24
  127. </span>
  128. </a>
  129. </div>
  130. <p class="text-xs text-github-gray-secondary mt-2">用于:显示数量信息</p>
  131. </div>
  132. </div>
  133. </section>
  134. <!-- 导航组件 -->
  135. <section class="border border-github-gray-border rounded-md overflow-hidden">
  136. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border font-medium">
  137. 导航组件
  138. </div>
  139. <div class="p-6 space-y-6">
  140. <!-- 选项卡导航 -->
  141. <div>
  142. <h3 class="text-sm font-medium mb-2">选项卡导航</h3>
  143. <div class="border-b border-github-gray-border">
  144. <nav class="flex -mb-px">
  145. <a href="#" class="px-4 py-2 text-sm border-b-2 border-github-blue text-github-blue font-medium">
  146. Code
  147. </a>
  148. <a href="#" class="px-4 py-2 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  149. Issues
  150. </a>
  151. <a href="#" class="px-4 py-2 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  152. Pull Requests
  153. </a>
  154. </nav>
  155. </div>
  156. <p class="text-xs text-github-gray-secondary mt-2">用于:主要页面导航选项卡</p>
  157. </div>
  158. <!-- 副导航 -->
  159. <div>
  160. <h3 class="text-sm font-medium mb-2">副导航</h3>
  161. <nav class="bg-github-gray-bg p-3 rounded-md">
  162. <ul class="space-y-1">
  163. <li>
  164. <a href="#" class="flex items-center px-3 py-2 text-sm rounded-md bg-white border border-github-gray-border font-medium">
  165. Overview
  166. </a>
  167. </li>
  168. <li>
  169. <a href="#" class="flex items-center px-3 py-2 text-sm rounded-md text-github-gray-secondary hover:text-github-gray-text hover:bg-white">
  170. Repositories
  171. </a>
  172. </li>
  173. <li>
  174. <a href="#" class="flex items-center px-3 py-2 text-sm rounded-md text-github-gray-secondary hover:text-github-gray-text hover:bg-white">
  175. Projects
  176. </a>
  177. </li>
  178. </ul>
  179. </nav>
  180. <p class="text-xs text-github-gray-secondary mt-2">用于:侧边栏导航</p>
  181. </div>
  182. </div>
  183. </section>
  184. <!-- 卡片组件 -->
  185. <section class="border border-github-gray-border rounded-md overflow-hidden">
  186. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border font-medium">
  187. 卡片组件
  188. </div>
  189. <div class="p-6 space-y-6">
  190. <!-- 基础卡片 -->
  191. <div>
  192. <h3 class="text-sm font-medium mb-2">基础卡片</h3>
  193. <div class="border border-github-gray-border rounded-md overflow-hidden">
  194. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  195. <span class="font-medium">Repository</span>
  196. </div>
  197. <div class="p-4">
  198. <h4 class="font-semibold">tailwindcss/tailwindcss</h4>
  199. <p class="text-sm text-github-gray-secondary mt-1">A utility-first CSS framework for rapid UI development.</p>
  200. <div class="flex items-center mt-3 text-xs text-github-gray-secondary">
  201. <span class="flex items-center mr-3">
  202. <span class="w-3 h-3 rounded-full bg-yellow-400 mr-1"></span>
  203. JavaScript
  204. </span>
  205. <span class="flex items-center mr-3">
  206. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-0.5">
  207. <path stroke-linecap="round" stroke-linejoin="round" d="M11.48 3.499a.562.562 0 011.04 0l2.125 5.111a.563.563 0 00.475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 00-.182.557l1.285 5.385a.562.562 0 01-.84.61l-4.725-2.885a.563.563 0 00-.586 0L6.982 20.54a.562.562 0 01-.84-.61l1.285-5.386a.562.562 0 00-.182-.557l-4.204-3.602a.563.563 0 01.321-.988l5.518-.442a.563.563 0 00.475-.345L11.48 3.5z" />
  208. </svg>
  209. 52.1k
  210. </span>
  211. <span class="flex items-center">
  212. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-0.5">
  213. <path stroke-linecap="round" stroke-linejoin="round" d="M7.217 10.907a2.25 2.25 0 100 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 103.935 2.186 2.25 2.25 0 00-3.935-2.186zm0-12.814a2.25 2.25 0 103.933-2.185 2.25 2.25 0 00-3.933 2.185z" />
  214. </svg>
  215. 2.4k
  216. </span>
  217. </div>
  218. </div>
  219. </div>
  220. <p class="text-xs text-github-gray-secondary mt-2">用于:展示仓库或项目信息</p>
  221. </div>
  222. <!-- 列表卡片 -->
  223. <div>
  224. <h3 class="text-sm font-medium mb-2">列表卡片</h3>
  225. <div class="border border-github-gray-border rounded-md overflow-hidden">
  226. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  227. <span class="font-medium">Recent Issues</span>
  228. </div>
  229. <div>
  230. <a href="#" class="block p-4 border-b border-github-gray-border hover:bg-github-gray-bg">
  231. <div class="flex items-start">
  232. <div class="mt-0.5 mr-2 text-github-green">
  233. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5">
  234. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
  235. </svg>
  236. </div>
  237. <div>
  238. <h4 class="font-medium">Update documentation for v3.0</h4>
  239. <p class="text-xs text-github-gray-secondary mt-1">#245 opened 2 days ago by username</p>
  240. </div>
  241. </div>
  242. </a>
  243. <a href="#" class="block p-4 hover:bg-github-gray-bg">
  244. <div class="flex items-start">
  245. <div class="mt-0.5 mr-2 text-github-green">
  246. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5">
  247. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
  248. </svg>
  249. </div>
  250. <div>
  251. <h4 class="font-medium">Fix responsive layout on mobile</h4>
  252. <p class="text-xs text-github-gray-secondary mt-1">#243 opened 3 days ago by username</p>
  253. </div>
  254. </div>
  255. </a>
  256. </div>
  257. </div>
  258. <p class="text-xs text-github-gray-secondary mt-2">用于:展示议题、PR或通知列表</p>
  259. </div>
  260. </div>
  261. </section>
  262. </div>
  263. </body>
  264. </html>

上面的代码展示了GitHub的几种常见组件,包括按钮、标签、导航和卡片组件。这些组件将成为我们后续复刻GitHub界面的基础元素。

GitHub响应式设计分析

GitHub的响应式设计采用桌面优先的策略,但在移动设备上也提供良好的体验。以下是GitHub常见的响应式设计模式:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub响应式设计 - Tailwind CSS复刻</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. colors: {
  13. github: {
  14. blue: '#0969da',
  15. gray: {
  16. bg: '#f6f8fa',
  17. border: '#d0d7de',
  18. text: '#24292f',
  19. secondary: '#57606a'
  20. }
  21. }
  22. }
  23. }
  24. }
  25. }
  26. </script>
  27. </head>
  28. <body class="bg-white text-github-gray-text">
  29. <!-- 响应式导航栏 -->
  30. <header class="border-b border-github-gray-border sticky top-0 bg-white z-10">
  31. <div class="max-w-6xl mx-auto px-4">
  32. <div class="flex items-center justify-between h-16">
  33. <!-- Logo部分 -->
  34. <div class="flex items-center">
  35. <a href="#" class="text-github-gray-text">
  36. <svg height="32" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="32" data-view-component="true" class="fill-current">
  37. <path d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"></path>
  38. </svg>
  39. </a>
  40. </div>
  41. <!-- 桌面导航 -->
  42. <nav class="hidden md:flex space-x-6">
  43. <a href="#" class="text-github-gray-text hover:text-github-blue text-sm">Pull requests</a>
  44. <a href="#" class="text-github-gray-text hover:text-github-blue text-sm">Issues</a>
  45. <a href="#" class="text-github-gray-text hover:text-github-blue text-sm">Marketplace</a>
  46. <a href="#" class="text-github-gray-text hover:text-github-blue text-sm">Explore</a>
  47. </nav>
  48. <!-- 移动导航按钮 -->
  49. <div class="md:hidden">
  50. <button type="button" class="text-github-gray-text">
  51. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
  52. <path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/>
  53. </svg>
  54. </button>
  55. </div>
  56. </div>
  57. </div>
  58. <!-- 移动导航下拉菜单(通常在实际项目中通过JavaScript控制显示隐藏) -->
  59. <div class="hidden md:hidden border-t border-github-gray-border bg-white">
  60. <div class="px-4 py-3 space-y-2">
  61. <a href="#" class="block px-3 py-2 text-github-gray-text hover:bg-github-gray-bg rounded-md">Pull requests</a>
  62. <a href="#" class="block px-3 py-2 text-github-gray-text hover:bg-github-gray-bg rounded-md">Issues</a>
  63. <a href="#" class="block px-3 py-2 text-github-gray-text hover:bg-github-gray-bg rounded-md">Marketplace</a>
  64. <a href="#" class="block px-3 py-2 text-github-gray-text hover:bg-github-gray-bg rounded-md">Explore</a>
  65. </div>
  66. </div>
  67. </header>
  68. <main class="max-w-6xl mx-auto px-4 py-6">
  69. <h1 class="text-2xl font-semibold mb-6">GitHub响应式设计模式</h1>
  70. <!-- 常见响应式模式 -->
  71. <section class="mb-10">
  72. <h2 class="text-xl font-semibold mb-4 border-b border-github-gray-border pb-2">常见响应式布局转换</h2>
  73. <!-- 列转行 -->
  74. <div class="mb-8">
  75. <h3 class="text-lg font-medium mb-3">从列布局到行布局</h3>
  76. <p class="text-github-gray-secondary mb-4">在小屏幕上,多列布局通常会转换为单列垂直排列</p>
  77. <div class="border border-github-gray-border rounded-md overflow-hidden">
  78. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  79. <span class="font-medium">仓库信息布局</span>
  80. </div>
  81. <div class="p-6">
  82. <!-- 在小屏幕上垂直排列,在中等及以上屏幕使用列布局 -->
  83. <div class="flex flex-col md:flex-row md:items-center md:justify-between">
  84. <div class="mb-4 md:mb-0">
  85. <h4 class="font-semibold">tailwindcss/tailwindcss</h4>
  86. <p class="text-sm text-github-gray-secondary mt-1">A utility-first CSS framework</p>
  87. </div>
  88. <div class="flex flex-wrap gap-2">
  89. <button class="bg-github-gray-bg hover:bg-github-gray-border border border-github-gray-border rounded-md px-3 py-1.5 text-sm font-medium inline-flex items-center">
  90. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  91. <path stroke-linecap="round" stroke-linejoin="round"
  92. d="M11.48 3.499a.562.562 0 011.04 0l2.125 5.111a.563.563 0 00.475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 00-.182.557l1.285 5.385a.562.562 0 01-.84.61l-4.725-2.885a.563.563 0 00-.586 0L6.982 20.54a.562.562 0 01-.84-.61l1.285-5.386a.562.562 0 00-.182-.557l-4.204-3.602a.563.563 0 01.321-.988l5.518-.442a.563.563 0 00.475-.345L11.48 3.5z"/>
  93. </svg>
  94. Star
  95. </button>
  96. <button class="bg-github-gray-bg hover:bg-github-gray-border border border-github-gray-border rounded-md px-3 py-1.5 text-sm font-medium inline-flex items-center">
  97. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  98. <path stroke-linecap="round" stroke-linejoin="round"
  99. d="M7.217 10.907a2.25 2.25 0 100 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 103.935 2.186 2.25 2.25 0 00-3.935-2.186zm0-12.814a2.25 2.25 0 103.933-2.185 2.25 2.25 0 00-3.933 2.185z"/>
  100. </svg>
  101. Fork
  102. </button>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. <!-- 侧边栏转换 -->
  109. <div class="mb-8">
  110. <h3 class="text-lg font-medium mb-3">侧边栏转换</h3>
  111. <p class="text-github-gray-secondary mb-4">在小屏幕上,侧边栏通常会移到内容上方或隐藏在菜单中</p>
  112. <div class="border border-github-gray-border rounded-md overflow-hidden">
  113. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  114. <span class="font-medium">仓库页面布局</span>
  115. </div>
  116. <div class="p-6">
  117. <!-- 在小屏幕上垂直排列,在大屏幕使用边栏布局 -->
  118. <div class="grid grid-cols-1 lg:grid-cols-4 gap-6">
  119. <!-- 侧边栏(小屏幕上在上方) -->
  120. <div class="lg:col-span-1">
  121. <div class="bg-white p-4 border border-github-gray-border rounded-md">
  122. <h4 class="font-medium mb-3">About</h4>
  123. <p class="text-sm text-github-gray-secondary mb-4">A utility-first CSS framework for rapid UI development.</p>
  124. <div class="flex items-center text-sm text-github-gray-secondary mb-2">
  125. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-2">
  126. <path stroke-linecap="round" stroke-linejoin="round"
  127. d="M12 21a9.004 9.004 0 008.716-6.747M12 21a9.004 9.004 0 01-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 017.843 4.582M12 3a8.997 8.997 0 00-7.843 4.582m15.686 0A11.953 11.953 0 0112 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0121 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0112 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 013 12c0-1.605.42-3.113 1.157-4.418"/>
  128. </svg>
  129. <span>tailwindcss.com</span>
  130. </div>
  131. <!-- 在小屏幕上横向排列,在大屏幕上也是 -->
  132. <div class="flex flex-wrap gap-2 text-sm text-github-gray-secondary">
  133. <div class="flex items-center">
  134. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  135. <path stroke-linecap="round" stroke-linejoin="round"
  136. d="M11.48 3.499a.562.562 0 011.04 0l2.125 5.111a.563.563 0 00.475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 00-.182.557l1.285 5.385a.562.562 0 01-.84.61l-4.725-2.885a.563.563 0 00-.586 0L6.982 20.54a.562.562 0 01-.84-.61l1.285-5.386a.562.562 0 00-.182-.557l-4.204-3.602a.563.563 0 01.321-.988l5.518-.442a.563.563 0 00.475-.345L11.48 3.5z"/>
  137. </svg>
  138. 52.1k stars
  139. </div>
  140. <div class="flex items-center">
  141. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  142. <path stroke-linecap="round" stroke-linejoin="round"
  143. d="M7.217 10.907a2.25 2.25 0 100 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 103.935 2.186 2.25 2.25 0 00-3.935-2.186zm0-12.814a2.25 2.25 0 103.933-2.185 2.25 2.25 0 00-3.933 2.185z"/>
  144. </svg>
  145. 2.4k forks
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. <!-- 主内容(小屏幕上在下方) -->
  151. <div class="lg:col-span-3">
  152. <div class="bg-white p-4 border border-github-gray-border rounded-md">
  153. <h4 class="font-medium mb-3">README.md</h4>
  154. <div class="prose text-sm">
  155. <p class="mb-2">Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.</p>
  156. <p>This is the main content area that would show repository information. On mobile screens, this appears below the About section, while on
  157. desktop screens it appears to the right.</p>
  158. </div>
  159. </div>
  160. </div>
  161. </div>
  162. </div>
  163. </div>
  164. </div>
  165. <!-- 选项卡导航响应式处理 -->
  166. <div class="mb-8">
  167. <h3 class="text-lg font-medium mb-3">选项卡导航响应式处理</h3>
  168. <p class="text-github-gray-secondary mb-4">在小屏幕上,GitHub的选项卡会使用可滚动的水平导航</p>
  169. <div class="border border-github-gray-border rounded-md overflow-hidden">
  170. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  171. <span class="font-medium">仓库选项卡导航</span>
  172. </div>
  173. <div class="p-0">
  174. <!-- 可滚动的水平选项卡 -->
  175. <div class="overflow-x-auto border-b border-github-gray-border">
  176. <nav class="flex min-w-max">
  177. <a href="#" class="px-4 py-3 text-sm border-b-2 border-github-blue text-github-blue font-medium">
  178. <div class="flex items-center">
  179. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  180. <path stroke-linecap="round" stroke-linejoin="round" d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5"/>
  181. </svg>
  182. Code
  183. </div>
  184. </a>
  185. <a href="#"
  186. class="px-4 py-3 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  187. <div class="flex items-center">
  188. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  189. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
  190. </svg>
  191. Issues
  192. </div>
  193. </a>
  194. <a href="#"
  195. class="px-4 py-3 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  196. <div class="flex items-center">
  197. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  198. <path stroke-linecap="round" stroke-linejoin="round" d="M7.5 21L3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5"/>
  199. </svg>
  200. Pull requests
  201. </div>
  202. </a>
  203. <a href="#"
  204. class="px-4 py-3 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  205. <div class="flex items-center">
  206. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  207. <path stroke-linecap="round" stroke-linejoin="round"
  208. d="M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 01-.825-.242m9.345-8.334a2.126 2.126 0 00-.476-.095 48.64 48.64 0 00-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0011.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"/>
  209. </svg>
  210. Discussions
  211. </div>
  212. </a>
  213. <a href="#"
  214. class="px-4 py-3 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  215. <div class="flex items-center">
  216. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  217. <path stroke-linecap="round" stroke-linejoin="round"
  218. d="M3.75 3v11.25A2.25 2.25 0 006 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0118 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6"/>
  219. </svg>
  220. Actions
  221. </div>
  222. </a>
  223. <a href="#"
  224. class="px-4 py-3 text-sm border-b-2 border-transparent hover:border-github-gray-border text-github-gray-secondary hover:text-github-gray-text">
  225. <div class="flex items-center">
  226. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-1">
  227. <path stroke-linecap="round" stroke-linejoin="round"
  228. d="M3.75 9.776c.112-.017.227-.026.344-.026h15.812c.117 0 .232.009.344.026m-16.5 0a2.25 2.25 0 00-1.883 2.542l.857 6a2.25 2.25 0 002.227 1.932H19.05a2.25 2.25 0 002.227-1.932l.857-6a2.25 2.25 0 00-1.883-2.542m-16.5 0V6A2.25 2.25 0 016 3.75h3.879a1.5 1.5 0 011.06.44l2.122 2.12a1.5 1.5 0 001.06.44H18A2.25 2.25 0 0120.25 9v.776"/>
  229. </svg>
  230. Projects
  231. </div>
  232. </a>
  233. </nav>
  234. </div>
  235. <div class="p-6">
  236. <p class="text-sm text-github-gray-secondary">选项卡导航在小屏幕上可以水平滚动,确保用户可以访问所有选项,而不是自动换行或隐藏。</p>
  237. </div>
  238. </div>
  239. </div>
  240. </div>
  241. <!-- 表格响应式处理 -->
  242. <div>
  243. <h3 class="text-lg font-medium mb-3">表格响应式处理</h3>
  244. <p class="text-github-gray-secondary mb-4">在小屏幕上,GitHub的表格通常使用水平滚动或转换布局</p>
  245. <div class="border border-github-gray-border rounded-md overflow-hidden">
  246. <div class="bg-github-gray-bg px-4 py-3 border-b border-github-gray-border">
  247. <span class="font-medium">提交历史表格</span>
  248. </div>
  249. <div class="p-4">
  250. <!-- 可滚动的表格容器 -->
  251. <div class="overflow-x-auto">
  252. <table class="min-w-full text-sm">
  253. <thead>
  254. <tr class="bg-github-gray-bg border-b border-github-gray-border">
  255. <th class="py-2 px-4 text-left font-medium">Author</th>
  256. <th class="py-2 px-4 text-left font-medium">Commit</th>
  257. <th class="py-2 px-4 text-left font-medium">Message</th>
  258. <th class="py-2 px-4 text-left font-medium">Date</th>
  259. </tr>
  260. </thead>
  261. <tbody>
  262. <tr class="border-b border-github-gray-border">
  263. <td class="py-3 px-4">username</td>
  264. <td class="py-3 px-4">8a7d2f1</td>
  265. <td class="py-3 px-4">Update documentation</td>
  266. <td class="py-3 px-4">2 days ago</td>
  267. </tr>
  268. <tr>
  269. <td class="py-3 px-4">another-user</td>
  270. <td class="py-3 px-4">5c3b9e2</td>
  271. <td class="py-3 px-4">Fix responsive layout bug</td>
  272. <td class="py-3 px-4">3 days ago</td>
  273. </tr>
  274. </tbody>
  275. </table>
  276. </div>
  277. <p class="text-xs text-github-gray-secondary mt-3">表格在小屏幕上可以水平滚动,保持完整结构,而不是改变其布局。</p>
  278. </div>
  279. </div>
  280. </div>
  281. </section>
  282. </main>
  283. </body>
  284. </html>

通过这个示例,我们展示了GitHub界面在不同设备尺寸下的响应式处理策略,包括导航栏的转换、侧边栏的位置变化、选项卡的横向滚动和表格的响应式处理。

将分析整合到Tailwind配置中

基于以上分析,我们可以创建一个针对GitHub复刻的Tailwind配置文件:

  1. // tailwind.config.js
  2. module.exports = {
  3. content: [
  4. "./src/**/*.{html,js}",
  5. ],
  6. theme: {
  7. extend: {
  8. colors: {
  9. github: {
  10. blue: '#0969da',
  11. green: '#2da44e',
  12. red: '#cf222e',
  13. yellow: '#bf8700',
  14. purple: '#8250df',
  15. gray: {
  16. bg: '#f6f8fa',
  17. border: '#d0d7de',
  18. text: '#24292f',
  19. secondary: '#57606a'
  20. }
  21. }
  22. },
  23. fontFamily: {
  24. github: [
  25. '-apple-system',
  26. 'BlinkMacSystemFont',
  27. 'Segoe UI',
  28. 'Helvetica',
  29. 'Arial',
  30. 'sans-serif',
  31. 'Apple Color Emoji',
  32. 'Segoe UI Emoji'
  33. ]
  34. },
  35. maxWidth: {
  36. 'github-content': '1280px',
  37. 'github-text': '720px'
  38. },
  39. boxShadow: {
  40. 'github-dropdown': '0 1px 3px rgba(0,0,0,0.12), 0 8px 24px rgba(149,157,165,0.2)',
  41. 'github-modal': '0 8px 24px rgba(149,157,165,0.2)'
  42. },
  43. borderRadius: {
  44. 'github': '6px' // GitHub的标准圆角大小
  45. }
  46. }
  47. },
  48. plugins: [],
  49. }

这个配置文件扩展了标准的Tailwind配置,加入了GitHub特定的颜色、字体、宽度和阴影,使我们能够更准确地复刻GitHub的视觉效果。

GitHub界面设计总结

通过上述分析,我们了解了GitHub界面设计的几个关键特点:

  1. 清晰的视觉层次:GitHub使用简洁的设计元素,通过颜色、间距和排版创建清晰的视觉层次。

  2. 一致的设计语言:整个平台使用统一的色彩系统、组件样式和布局结构,确保用户体验的一致性。

  3. 功能性组件:GitHub的界面组件以功能为中心,优先考虑用户的工作流程,而非纯粹的美观。

  4. 响应式设计:GitHub采用桌面优先的设计策略,但同时确保在移动设备上有良好的体验,通过布局转换、横向滚动和折叠菜单实现。

  5. 系统性间距:GitHub使用一致的间距系统(16px、24px、32px等)来组织页面元素,创建协调的视觉节奏。

  6. 含蓄的视觉装饰:GitHub的界面以功能为先,但在关键处使用适量的视觉强调(如颜色、悬停效果、卡片阴影)来提升用户体验。

实用提示与常见陷阱

  1. 色彩系统陷阱

    • 不要过度使用强调色(如蓝色、绿色)。GitHub主要使用中性色调,仅在必要时使用强调色。
    • 确保颜色对比度符合可访问性标准,特别是文本和背景的对比度。
  2. 布局技巧

    • 使用max-width而非固定宽度,确保页面在各种屏幕尺寸上都能良好显示。
    • 嵌套网格布局时要注意间距一致性,可以使用Tailwind的gap属性统一管理。
  3. 组件复用陷阱

    • 识别可复用的模式,避免重复编写类似的组件样式。
    • 保持组件变体的一致性,如按钮系列应保持相同的内边距和字体大小。
  4. 响应式处理技巧

    • 使用Tailwind的响应式前缀(如md:lg:)一致地应用断点变化。
    • 在处理复杂导航时,优先考虑内容可访问性,而非简单地隐藏内容。
  5. 图标处理陷阱

    • 确保SVG图标大小一致,GitHub通常使用16px、20px和24px三种尺寸。
    • 注意图标与文本的对齐方式,通常使用flex items-center确保垂直居中。

练习任务

为了巩固本节所学内容,尝试完成以下练习任务:

  1. GitHub导航栏复刻

    • 创建一个完整响应式的GitHub顶部导航栏,包含logo、主导航链接、搜索框和用户下拉菜单。
    • 确保在移动视图下转换为汉堡菜单,并实现基本的切换功能。
  2. 仓库页面标签导航

    • 复刻GitHub仓库页面的标签导航(Code、Issues、Pull requests等),包含图标和文本。
    • 实现横向滚动功能,确保在小屏幕上所有选项卡都可访问。
  3. 议题卡片组件

    • 创建一个GitHub风格的议题卡片组件,包含标题、状态标签、描述和元数据。
    • 实现卡片的响应式布局,确保在不同屏幕尺寸下的良好显示。
  4. 按钮系列组件

    • 创建一套GitHub风格的按钮组件,包括主要按钮、次要按钮、危险按钮和图标按钮。
    • 实现按钮的各种状态:默认、悬停、聚焦和禁用。
  5. 用户资料卡片

    • 复刻GitHub用户资料侧边栏卡片,包含头像、名称、状态和统计信息。
    • 确保卡片在移动视图下适当调整布局。

总结

本节中,我们对GitHub的界面设计进行了深入分析,包括其色彩系统、排版规则、布局结构、常用组件和响应式策略。这些分析将为我们后续的实际页面复刻提供重要的设计参考。

通过理解GitHub设计系统的核心原则和细节,我们能够更准确地使用Tailwind CSS复刻GitHub的视觉效果,实现既保持原始设计精神又适合学习目的的界面复刻。

在下一节中,我们将基于这些分析,进一步调整Tailwind配置,使其更好地匹配GitHub的设计规范,为后续的实际页面复刻做准备。