tool-bar.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- 网盘工具栏组件 -->
  2. <!-- 头部区域 -->
  3. <div class="header">
  4. <div class="breadcrumb" id="breadcrumb">
  5. <span class="breadcrumb-item active" data-path="">全部文件</span>
  6. </div>
  7. <div class="header-right">
  8. <button class="btn-upload" id="btnUpload" title="上传文件">
  9. <svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
  10. <path d="M8 4L3 9h3v5h4V9h3L8 4z"/>
  11. <path d="M2 2h12v2H2z"/>
  12. </svg>
  13. <span>上传</span>
  14. </button>
  15. <div class="search-box">
  16. <svg class="search-icon" width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
  17. <path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
  18. </svg>
  19. <input type="text" id="searchInput" placeholder="搜索文件或文件夹...">
  20. <button class="search-clear" id="searchClear" style="display: none;" title="清空搜索">
  21. <svg width="14" height="14" viewBox="0 0 14 14" fill="currentColor">
  22. <path d="M7 0C3.13 0 0 3.13 0 7s3.13 7 7 7 7-3.13 7-7S10.87 0 7 0zm3.5 9.21L9.21 10.5 7 8.29 4.79 10.5 3.5 9.21 5.71 7 3.5 4.79 4.79 3.5 7 5.71 9.21 3.5 10.5 4.79 8.29 7 10.5 9.21z"/>
  23. </svg>
  24. </button>
  25. </div>
  26. </div>
  27. </div>
  28. <!-- 选中操作栏 -->
  29. <div class="selection-bar" id="selectionBar">
  30. <div class="selection-actions">
  31. <button class="btn-action" id="btnDownload">
  32. <svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
  33. <path d="M8 12L3 7h3V2h4v5h3L8 12z"/>
  34. <path d="M2 13h12v2H2z"/>
  35. </svg>
  36. 下载
  37. </button>
  38. <button class="btn-action btn-danger" id="btnDelete">
  39. <svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
  40. <path d="M5 2V1h6v1h4v2H1V2h4zm1 3h4v9H6V5zm-3 0h2v9H3V5zm8 0h2v9h-2V5z"/>
  41. </svg>
  42. 删除
  43. </button>
  44. </div>
  45. <span class="selection-count" id="selectionCount">已选中 0 项</span>
  46. </div>