lzc-video-player 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +1 -0
- package/.eslintrc.cjs +18 -0
- package/.prettierrc.json +5 -0
- package/AGENTS.md +31 -0
- package/README.md +38 -0
- package/build.sh +10 -0
- package/demo/.vscode/extensions.json +3 -0
- package/demo/README.md +40 -0
- package/demo/env.d.ts +1 -0
- package/demo/index.html +13 -0
- package/demo/package-lock.json +2037 -0
- package/demo/package.json +25 -0
- package/demo/public/favicon.ico +0 -0
- package/demo/src/App.vue +25 -0
- package/demo/src/assets/base.css +70 -0
- package/demo/src/assets/logo.svg +1 -0
- package/demo/src/assets/main.css +33 -0
- package/demo/src/main.ts +8 -0
- package/demo/tsconfig.config.json +8 -0
- package/demo/tsconfig.json +16 -0
- package/demo/vite.config.ts +14 -0
- package/docs/progress-bar-style-analysis.md +87 -0
- package/env.d.ts +1 -0
- package/error_pages/502.html.tpl +13 -0
- package/i18next-parser.config.mjs +147 -0
- package/index.html +54 -0
- package/lazycat.png +0 -0
- package/lib/README.md +48 -0
- package/lib/package.json +22 -0
- package/lzc-build.local.yml +65 -0
- package/lzc-build.yml +65 -0
- package/lzc-manifest.yml +53 -0
- package/makefile +15 -0
- package/package.json +69 -0
- package/postcss.config.js +6 -0
- package/public/512x512.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/languages/en/translation.json +125 -0
- package/public/languages/zh/translation.json +125 -0
- package/public/libass-wasm/4.1.0/default.woff2 +0 -0
- package/public/libass-wasm/4.1.0/subtitles-octopus-worker-legacy.js +40 -0
- package/public/libass-wasm/4.1.0/subtitles-octopus-worker.js +1 -0
- package/public/libass-wasm/4.1.0/subtitles-octopus-worker.wasm +0 -0
- package/public/libass-wasm/4.1.0/subtitles-octopus.js +1680 -0
- package/public/square-128x128.png +0 -0
- package/public/square-256x256.png +0 -0
- package/public/square-512x512.png +0 -0
- package/src/App.vue +18 -0
- package/src/assets/base.scss +104 -0
- package/src/assets/cloud.png +0 -0
- package/src/assets/logo.svg +1 -0
- package/src/components/Dialog/index.vue +96 -0
- package/src/components/MultipleEdit/choose.vue +39 -0
- package/src/components/PlayList/index.vue +521 -0
- package/src/components/Spectrum/index.vue +58 -0
- package/src/components/Video/NativeVideoPlayer.vue +748 -0
- package/src/components/Video/README.md +3 -0
- package/src/components/Video/clientPlayer.ts +348 -0
- package/src/components/Video/components/LzcModal/components/simpleList.vue +57 -0
- package/src/components/Video/components/LzcModal/list.vue +52 -0
- package/src/components/Video/components/LzcModal/playrate.vue +45 -0
- package/src/components/Video/components/LzcModal/resolution.vue +117 -0
- package/src/components/Video/components/LzcModal/subtitle.vue +499 -0
- package/src/components/Video/components/LzcModal/useModal.ts +18 -0
- package/src/components/Video/components/LzcOverlay/SubtitleLayer.vue +321 -0
- package/src/components/Video/components/LzcOverlay/cast.vue +253 -0
- package/src/components/Video/components/LzcOverlay/casting.vue +205 -0
- package/src/components/Video/components/LzcOverlay/error.vue +103 -0
- package/src/components/Video/components/LzcOverlay/helper.ts +81 -0
- package/src/components/Video/components/LzcOverlay/index.vue +99 -0
- package/src/components/Video/components/LzcOverlay/playing.vue +496 -0
- package/src/components/Video/components/LzcOverlay/playingButtons.vue +122 -0
- package/src/components/Video/components/LzcOverlay/playingLayout.vue +287 -0
- package/src/components/Video/components/LzcOverlay/useCast.ts +235 -0
- package/src/components/Video/components/LzcOverlay/useCommon.ts +41 -0
- package/src/components/Video/components/LzcOverlay/useOctopusRenderer.ts +230 -0
- package/src/components/Video/components/LzcOverlay/useSubtitleRenderEngine.ts +79 -0
- package/src/components/Video/components/LzcOverlay/useSubtitleTrack.ts +139 -0
- package/src/components/Video/components/useLzcCommon.ts +16 -0
- package/src/components/Video/directPlay.ts +345 -0
- package/src/components/Video/getSubtitleInfo.ts +42 -0
- package/src/components/Video/native/EventEmitter.ts +62 -0
- package/src/components/Video/native/NativeControls.vue +510 -0
- package/src/components/Video/native/NativeModal.vue +133 -0
- package/src/components/Video/native/NativePlayer.ts +913 -0
- package/src/components/Video/native/NativePlayer.vue +53 -0
- package/src/components/Video/native/index.ts +9 -0
- package/src/components/Video/native/native-player.css +183 -0
- package/src/components/Video/native/playerKey.ts +5 -0
- package/src/components/Video/native/useNativeCastMiddleware.ts +50 -0
- package/src/components/Video/native/useNativePlayer.ts +3 -0
- package/src/components/Video/native/useNativePlayerFullscreen.ts +44 -0
- package/src/components/Video/native/useNativePlayerHistory.ts +69 -0
- package/src/components/Video/native/useNativePlayerModal.ts +68 -0
- package/src/components/Video/native/useNativePlayerPlaylist.ts +67 -0
- package/src/components/Video/native/useNativePlayerState.ts +225 -0
- package/src/components/Video/player.ts +99 -0
- package/src/components/Video/theme/index.scss +291 -0
- package/src/components/Video/theme/videojs.css +1797 -0
- package/src/components/Video/useSource.ts +1431 -0
- package/src/components/Video/useSubtitlePreference.ts +66 -0
- package/src/components/Video/useWebview.ts +79 -0
- package/src/components/Video/videoFrame.ts +58 -0
- package/src/env.d.ts +3 -0
- package/src/i18n/README.md +392 -0
- package/src/i18n/index.ts +49 -0
- package/src/icons/Video_Player.svg +69 -0
- package/src/icons/box.svg +15 -0
- package/src/icons/client.svg +17 -0
- package/src/icons/logo.svg +28 -0
- package/src/icons//344/270/212/344/270/200/344/270/252.svg +6 -0
- package/src/icons//344/270/213/344/270/200/344/270/252.svg +4 -0
- package/src/icons//344/272/256/345/272/246.svg +13 -0
- package/src/icons//345/200/215/351/200/237.svg +14 -0
- package/src/icons//345/205/250/345/261/217.svg +16 -0
- package/src/icons//345/205/250/351/200/211_/345/267/262/351/200/211/344/270/255.svg +16 -0
- package/src/icons//345/205/250/351/200/211_/346/234/252/351/200/211/344/270/255.svg +15 -0
- package/src/icons//345/205/263/351/227/255/345/244/232/351/200/211.svg +14 -0
- package/src/icons//345/205/263/351/227/255/346/212/225/345/261/217.svg +11 -0
- package/src/icons//345/233/236/346/224/266/347/253/231.svg +15 -0
- package/src/icons//345/244/261/346/225/210.svg +17 -0
- package/src/icons//346/207/222/347/214/253/346/222/255/346/224/276/345/231/250-icon.png +0 -0
- package/src/icons//346/207/222/347/214/253/346/222/255/346/224/276/345/231/250.png +0 -0
- package/src/icons//346/212/225/345/261/217.svg +11 -0
- package/src/icons//346/212/225/351/200/201/344/270/255.jpg +0 -0
- package/src/icons//346/212/225/351/200/201/344/270/255.svg +21 -0
- package/src/icons//346/222/255/346/224/276.svg +3 -0
- package/src/icons//346/232/202/345/201/234.svg +4 -0
- package/src/icons//346/232/202/346/227/240.svg +21 -0
- package/src/icons//346/233/264/345/244/232/346/223/215/344/275/234.svg +11 -0
- package/src/icons//347/224/265/350/247/206.svg +18 -0
- package/src/icons//347/247/273/345/212/250/347/253/257_/350/203/214/346/231/257.webp +0 -0
- package/src/icons//350/203/214/346/231/257.png +0 -0
- package/src/icons//350/277/224/345/233/236.svg +13 -0
- package/src/icons//350/277/233/345/205/245/345/205/250/345/261/217.svg +13 -0
- package/src/icons//351/200/200/345/207/272/345/205/250/345/261/217.svg +15 -0
- package/src/icons//351/200/211/346/213/251.svg +15 -0
- package/src/icons//351/237/263/351/207/217.svg +13 -0
- package/src/index.d.ts +9 -0
- package/src/lzc-video-player.scss +7 -0
- package/src/lzc-video-player.ts +6 -0
- package/src/main.ts +62 -0
- package/src/model.ts +77 -0
- package/src/quasar-variables.sass +10 -0
- package/src/router/index.ts +74 -0
- package/src/stores/pinia.ts +3 -0
- package/src/stores/playlist.ts +146 -0
- package/src/use/useKeyBind.ts +61 -0
- package/src/use/useMultipleEdit.ts +60 -0
- package/src/use/useSdk.ts +5 -0
- package/src/use/useSubtitle.ts +39 -0
- package/src/use/useUtils.ts +22 -0
- package/src/use/useVideoFrame.ts +60 -0
- package/src/views/Home.ts +99 -0
- package/src/views/mobile/Home.vue +246 -0
- package/src/views/mobile/Player.vue +141 -0
- package/tailwind.config.js +15 -0
- package/tsconfig.config.json +8 -0
- package/tsconfig.json +20 -0
- package/vite.config.lib.ts +88 -0
- package/vite.config.ts +122 -0
- package/vue-shim.d.ts +4 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="190px" height="32px" viewBox="0 0 190 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Video Player</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<polygon id="path-1" points="0 2.07 5.37 2.07 10.41 19.74 10.53 19.74 15.57 2.07 20.94 2.07 14.46 23.07 6.48 23.07"></polygon>
|
|
6
|
+
<path d="M27.93,6.87 L27.93,23.07 L23.13,23.07 L23.13,6.87 L27.93,6.87 Z M23.13,0 L27.93,0 L27.93,4.8 L23.13,4.8 L23.13,0 Z" id="path-2"></path>
|
|
7
|
+
<path d="M38.1,23.46 C36.62,23.46 35.32,23.105 34.2,22.395 C33.08,21.685 32.22,20.69 31.62,19.41 C31.02,18.13 30.72,16.67 30.72,15.03 C30.72,13.37 31.025,11.895 31.635,10.605 C32.245,9.315 33.105,8.31 34.215,7.59 C35.325,6.87 36.62,6.51 38.1,6.51 C38.78,6.51 39.465,6.63 40.155,6.87 C40.845,7.11 41.49,7.46 42.09,7.92 L42.09,0 L46.89,0 L46.89,19.32 C46.89,20.92 47.09,22.17 47.49,23.07 L42.99,23.07 C42.85,22.79 42.73,22.43 42.63,21.99 C41.37,22.97 39.86,23.46 38.1,23.46 Z M35.31,15.03 C35.31,15.95 35.495,16.79 35.865,17.55 C36.235,18.31 36.725,18.915 37.335,19.365 C37.945,19.815 38.59,20.04 39.27,20.04 C39.81,20.04 40.405,19.91 41.055,19.65 C41.705,19.39 42.24,18.85 42.66,18.03 L42.66,12 C42.24,11.16 41.705,10.61 41.055,10.35 C40.405,10.09 39.81,9.96 39.27,9.96 C38.59,9.96 37.945,10.18 37.335,10.62 C36.725,11.06 36.235,11.67 35.865,12.45 C35.495,13.23 35.31,14.09 35.31,15.03 Z" id="path-3"></path>
|
|
8
|
+
<path d="M64.62,22.2 C63.86,22.66 62.975,23 61.965,23.22 C60.955,23.44 59.98,23.55 59.04,23.55 C55.84,23.55 53.415,22.79 51.765,21.27 C50.115,19.75 49.29,17.62 49.29,14.88 C49.29,12.16 50.025,10.075 51.495,8.625 C52.965,7.175 54.97,6.45 57.51,6.45 C60.03,6.45 62.025,7.175 63.495,8.625 C64.965,10.075 65.7,12.16 65.7,14.88 C65.7,15.18 65.68,15.61 65.64,16.17 L53.97,16.17 C54.41,18.75 56.1,20.04 59.04,20.04 C61.1,20.04 62.96,19.43 64.62,18.21 L64.62,22.2 Z M61.17,12.81 C60.91,11.81 60.46,11.07 59.82,10.59 C59.18,10.11 58.41,9.87 57.51,9.87 C56.67,9.87 55.955,10.12 55.365,10.62 C54.775,11.12 54.36,11.85 54.12,12.81 L61.17,12.81 Z" id="path-4"></path>
|
|
9
|
+
<path d="M76.02,23.46 C74.32,23.46 72.825,23.11 71.535,22.41 C70.245,21.71 69.25,20.715 68.55,19.425 C67.85,18.135 67.5,16.61 67.5,14.85 C67.5,12.15 68.26,10.08 69.78,8.64 C71.3,7.2 73.38,6.48 76.02,6.48 C78.64,6.48 80.71,7.2 82.23,8.64 C83.75,10.08 84.51,12.15 84.51,14.85 C84.51,16.61 84.16,18.135 83.46,19.425 C82.76,20.715 81.77,21.71 80.49,22.41 C79.21,23.11 77.72,23.46 76.02,23.46 Z M72.24,14.85 C72.24,16.39 72.59,17.63 73.29,18.57 C73.99,19.51 74.9,19.98 76.02,19.98 C77.14,19.98 78.045,19.51 78.735,18.57 C79.425,17.63 79.77,16.39 79.77,14.85 C79.77,13.25 79.435,12.035 78.765,11.205 C78.095,10.375 77.18,9.96 76.02,9.96 C74.86,9.96 73.94,10.375 73.26,11.205 C72.58,12.035 72.24,13.25 72.24,14.85 Z" id="path-5"></path>
|
|
10
|
+
<path d="M105.06,2.07 C107.26,2.07 108.995,2.66 110.265,3.84 C111.535,5.02 112.17,6.7 112.17,8.88 C112.17,11.04 111.535,12.71 110.265,13.89 C108.995,15.07 107.26,15.66 105.06,15.66 L99.96,15.66 L99.96,23.07 L95.01,23.07 L95.01,2.07 L105.06,2.07 Z M104.61,11.7 C105.61,11.7 106.38,11.43 106.92,10.89 C107.46,10.35 107.73,9.68 107.73,8.88 C107.73,8.06 107.46,7.38 106.92,6.84 C106.38,6.3 105.61,6.03 104.61,6.03 L99.96,6.03 L99.96,11.7 L104.61,11.7 Z" id="path-6"></path>
|
|
11
|
+
<path d="M120.03,23.31 C118.23,23.31 116.87,22.805 115.95,21.795 C115.03,20.785 114.57,19.3 114.57,17.34 L114.57,0 L119.37,0 L119.37,16.14 C119.37,16.94 119.43,17.55 119.55,17.97 C119.67,18.39 119.87,18.71 120.15,18.93 C120.37,19.11 120.615,19.225 120.885,19.275 C121.155,19.325 121.63,19.35 122.31,19.35 L122.31,23.31 L120.03,23.31 Z" id="path-7"></path>
|
|
12
|
+
<path d="M131.01,23.46 C129.49,23.46 128.165,23.1 127.035,22.38 C125.905,21.66 125.035,20.67 124.425,19.41 C123.815,18.15 123.51,16.68 123.51,15 C123.51,13.34 123.815,11.865 124.425,10.575 C125.035,9.285 125.895,8.28 127.005,7.56 C128.115,6.84 129.41,6.48 130.89,6.48 C131.57,6.48 132.255,6.605 132.945,6.855 C133.635,7.105 134.28,7.45 134.88,7.89 L134.88,6.87 L139.68,6.87 L139.68,19.29 C139.68,20.91 139.88,22.17 140.28,23.07 L135.78,23.07 C135.64,22.79 135.52,22.43 135.42,21.99 C134.18,22.97 132.71,23.46 131.01,23.46 Z M128.1,15 C128.1,15.92 128.285,16.76 128.655,17.52 C129.025,18.28 129.515,18.885 130.125,19.335 C130.735,19.785 131.38,20.01 132.06,20.01 C132.54,20.01 133.08,19.905 133.68,19.695 C134.28,19.485 134.8,19.03 135.24,18.33 L135.24,11.61 C134.8,10.91 134.285,10.46 133.695,10.26 C133.105,10.06 132.56,9.96 132.06,9.96 C131.38,9.96 130.735,10.18 130.125,10.62 C129.515,11.06 129.025,11.665 128.655,12.435 C128.285,13.205 128.1,14.06 128.1,15 Z" id="path-8"></path>
|
|
13
|
+
<path d="M153.48,23.46 C152.82,25.56 151.67,27.13 150.03,28.17 C148.39,29.25 145.96,29.83 142.74,29.91 L142.74,26.04 C144.1,26.04 145.28,25.89 146.28,25.59 C147.2,25.29 147.87,24.89 148.29,24.39 C148.73,23.89 149.06,23.24 149.28,22.44 L149.67,21.06 L147.03,21.06 L141.18,6.87 L146.07,6.87 L150.45,18.24 L153.63,6.87 L158.61,6.87 L153.48,23.46 Z" id="path-9"></path>
|
|
14
|
+
<path d="M174.84,22.2 C174.08,22.66 173.195,23 172.185,23.22 C171.175,23.44 170.2,23.55 169.26,23.55 C166.06,23.55 163.635,22.79 161.985,21.27 C160.335,19.75 159.51,17.62 159.51,14.88 C159.51,12.16 160.245,10.075 161.715,8.625 C163.185,7.175 165.19,6.45 167.73,6.45 C170.25,6.45 172.245,7.175 173.715,8.625 C175.185,10.075 175.92,12.16 175.92,14.88 C175.92,15.18 175.9,15.61 175.86,16.17 L164.19,16.17 C164.63,18.75 166.32,20.04 169.26,20.04 C171.32,20.04 173.18,19.43 174.84,18.21 L174.84,22.2 Z M171.39,12.81 C171.13,11.81 170.68,11.07 170.04,10.59 C169.4,10.11 168.63,9.87 167.73,9.87 C166.89,9.87 166.175,10.12 165.585,10.62 C164.995,11.12 164.58,11.85 164.34,12.81 L171.39,12.81 Z" id="path-10"></path>
|
|
15
|
+
<path d="M183.12,6.87 L183.12,8.61 C183.64,8.05 184.265,7.615 184.995,7.305 C185.725,6.995 186.45,6.84 187.17,6.84 C187.67,6.84 188.14,6.91 188.58,7.05 L188.58,10.74 C188.02,10.6 187.49,10.53 186.99,10.53 C186.23,10.53 185.51,10.655 184.83,10.905 C184.15,11.155 183.58,11.55 183.12,12.09 L183.12,23.07 L178.32,23.07 L178.32,6.87 L183.12,6.87 Z" id="path-11"></path>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
18
|
+
<g id="1.0首页" transform="translate(-92.000000, -382.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
19
|
+
<g id="懒猫播放器-英文" transform="translate(92.000000, 382.000000)">
|
|
20
|
+
<g id="Video-Player" transform="translate(0.300000, 0.930000)">
|
|
21
|
+
<g id="路径">
|
|
22
|
+
<use xlink:href="#path-1"></use>
|
|
23
|
+
<use xlink:href="#path-1"></use>
|
|
24
|
+
</g>
|
|
25
|
+
<g id="形状">
|
|
26
|
+
<use xlink:href="#path-2"></use>
|
|
27
|
+
<use xlink:href="#path-2"></use>
|
|
28
|
+
</g>
|
|
29
|
+
<g id="形状">
|
|
30
|
+
<use xlink:href="#path-3"></use>
|
|
31
|
+
<use xlink:href="#path-3"></use>
|
|
32
|
+
</g>
|
|
33
|
+
<g id="形状">
|
|
34
|
+
<use xlink:href="#path-4"></use>
|
|
35
|
+
<use xlink:href="#path-4"></use>
|
|
36
|
+
</g>
|
|
37
|
+
<g id="形状">
|
|
38
|
+
<use xlink:href="#path-5"></use>
|
|
39
|
+
<use xlink:href="#path-5"></use>
|
|
40
|
+
</g>
|
|
41
|
+
<g id="形状">
|
|
42
|
+
<use xlink:href="#path-6"></use>
|
|
43
|
+
<use xlink:href="#path-6"></use>
|
|
44
|
+
</g>
|
|
45
|
+
<g id="路径">
|
|
46
|
+
<use xlink:href="#path-7"></use>
|
|
47
|
+
<use xlink:href="#path-7"></use>
|
|
48
|
+
</g>
|
|
49
|
+
<g id="形状">
|
|
50
|
+
<use xlink:href="#path-8"></use>
|
|
51
|
+
<use xlink:href="#path-8"></use>
|
|
52
|
+
</g>
|
|
53
|
+
<g id="路径">
|
|
54
|
+
<use xlink:href="#path-9"></use>
|
|
55
|
+
<use xlink:href="#path-9"></use>
|
|
56
|
+
</g>
|
|
57
|
+
<g id="形状">
|
|
58
|
+
<use xlink:href="#path-10"></use>
|
|
59
|
+
<use xlink:href="#path-10"></use>
|
|
60
|
+
</g>
|
|
61
|
+
<g id="路径">
|
|
62
|
+
<use xlink:href="#path-11"></use>
|
|
63
|
+
<use xlink:href="#path-11"></use>
|
|
64
|
+
</g>
|
|
65
|
+
</g>
|
|
66
|
+
</g>
|
|
67
|
+
</g>
|
|
68
|
+
</g>
|
|
69
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>形状</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="4.0播放-投屏" transform="translate(-532.000000, -163.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组" transform="translate(219.000000, 47.000000)">
|
|
7
|
+
<g id="1" transform="translate(12.000000, 115.000000)">
|
|
8
|
+
<g id="形状-2" transform="translate(301.000000, 1.000000)">
|
|
9
|
+
<path d="M8.47356505,13.5052871 L12.9577039,13.5052871 L12.9577039,6.76263701 L7.72620857,2.6940284 L2.49471329,6.76263701 L2.49471329,13.5052871 L6.9788521,13.5052871 L6.9788521,9.02114826 L8.47356505,9.02114826 L8.47356505,13.5052871 Z M14.452417,14.2526435 C14.452417,14.6653971 14.1178139,15 13.7050603,15 L1.74735683,15 C1.33460325,15 1.00000018,14.6653971 1.00000018,14.2526435 L1.00000018,6.39792706 C0.999840239,6.16713762 1.10631638,5.94922014 1.28847995,5.80751544 L7.26733171,1.1574635 C7.53722724,0.947512167 7.91518991,0.947512167 8.18508544,1.1574635 L14.1639372,5.80751544 C14.3461008,5.94922014 14.4525769,6.16713762 14.452417,6.39792706 L14.452417,14.2526435 L14.452417,14.2526435 Z" id="形状"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>形状</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="4.0播放-投屏" transform="translate(-561.000000, -163.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组" transform="translate(219.000000, 47.000000)">
|
|
7
|
+
<g id="1" transform="translate(12.000000, 115.000000)">
|
|
8
|
+
<g id="编组-3" transform="translate(301.000000, 1.000000)">
|
|
9
|
+
<g id="形状-3" transform="translate(29.000000, 0.000000)">
|
|
10
|
+
<path d="M8.10526317,13.0526316 L8.10526317,14.5263158 L11.0526316,14.5263158 L11.0526316,16 L3.68421054,16 L3.68421054,14.5263158 L6.63157894,14.5263158 L6.63157894,13.0526316 L0.736842111,13.0526316 C0.32989545,13.0526316 0,12.7227361 0,12.3157895 L0,2.73684211 C0,2.32989545 0.32989545,2 0.736842111,2 L14,2 C14.4069467,2 14.7368421,2.32989545 14.7368421,2.73684211 L14.7368421,12.3157895 C14.7368421,12.7227361 14.4069467,13.0526316 14,13.0526316 L8.10526317,13.0526316 L8.10526317,13.0526316 Z M1.47368422,3.4736842 L1.47368422,11.5789474 L13.2631579,11.5789474 L13.2631579,3.4736842 L1.47368422,3.4736842 Z" id="形状"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="80px" height="72px" viewBox="0 0 80 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>logo</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="100%" y1="7.86030531%" x2="30.2185028%" y2="82.0867957%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#FF34E3" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#9934FF" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
<linearGradient x1="0%" y1="7.86030531%" x2="100%" y2="92.1396947%" id="linearGradient-2">
|
|
10
|
+
<stop stop-color="#00C8FF" offset="0%"></stop>
|
|
11
|
+
<stop stop-color="#00E7D4" offset="100%"></stop>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
<linearGradient x1="29.3042612%" y1="0%" x2="70.6957388%" y2="100%" id="linearGradient-3">
|
|
14
|
+
<stop stop-color="#00C8FE" offset="0%"></stop>
|
|
15
|
+
<stop stop-color="#C334F4" offset="100%"></stop>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
</defs>
|
|
18
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
19
|
+
<g id="1.0首页" transform="translate(-148.000000, -286.000000)">
|
|
20
|
+
<g id="logo" transform="translate(148.000000, 286.000000)">
|
|
21
|
+
<path d="M48,15.0874382 L73.3777684,0.579821792 C74.042741,0.199679285 74.7927284,0 75.5555556,0 C77.8985818,0 79.8181447,1.84388955 79.9878095,4.18268013 L80,4.52001408 L80,47.5947536 C80,58.8282605 71.045695,67.934817 60,67.934817 L26,67.934817 C14.954305,67.934817 6,58.8282605 6,47.5947536 L6,35.4275016 C6,24.1939948 14.954305,15.0874382 26,15.0874382 L48,15.0874382 Z" id="路径" fill="url(#linearGradient-1)"></path>
|
|
22
|
+
<path d="M0,8.58519707 C0,6.08886222 1.98984556,4.06518299 4.44444444,4.06518299 C5.20727165,4.06518299 5.95725896,4.26486227 6.62223164,4.64500478 L32,19.1526212 L54,19.1526212 C65.045695,19.1526212 74,28.2591777 74,39.4926846 L74,51.6599366 C74,62.8934434 65.045695,72 54,72 L20,72 C8.954305,72 0,62.8934434 0,51.6599366 L0,8.58519707 Z" id="路径" fill="url(#linearGradient-2)"></path>
|
|
23
|
+
<path d="M24.9380359,15.1162408 L32,19.1532412 L54,19.1532412 C65.045695,19.1532412 74,28.2597977 74,39.4933046 L74,51.6605566 C74,57.4038238 71.6594431,62.5911295 67.8954776,66.2897309 C65.4725199,67.3487464 62.8036289,67.935437 60,67.935437 L26,67.935437 C14.954305,67.935437 6,58.8288805 6,47.5953736 L6,35.4281216 C6,24.5569121 14.3860395,15.6776707 24.9380359,15.1162408 Z" id="路径" fill="#FFFFFF"></path>
|
|
24
|
+
<path d="M38.9930225,31.4461927 L49.3976222,39.5323077 C51.1419269,40.8879243 51.4570208,43.400907 50.1014042,45.1452117 C49.8970253,45.408191 49.6606015,45.6446147 49.3976222,45.8489936 L38.9930225,53.9351086 C37.2487179,55.2907253 34.7357352,54.9756313 33.3801186,53.2313267 C32.8346034,52.5293991 32.5384615,51.6657477 32.5384615,50.7767657 L32.5384615,34.6045357 C32.5384615,32.3953967 34.3293225,30.6045357 36.5384615,30.6045357 C37.4274436,30.6045357 38.291095,30.9006775 38.9930225,31.4461927 Z" id="矩形" fill="url(#linearGradient-3)"></path>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g>
|
|
3
|
+
<path d="M16.8652 6.01631V13.9913C16.8652 15.6247 15.0902 16.6497 13.6736 15.833L10.2153 13.8413L6.75692 11.8413C5.34025 11.0247 5.34025 8.983 6.75692 8.16631L10.2153 6.16631L13.6736 4.17464C15.0902 3.35798 16.8652 4.37464 16.8652 6.01631Z" fill="white"/>
|
|
4
|
+
<path d="M3.13477 15.7756C3.47643 15.7756 3.75977 15.4922 3.75977 15.1506V4.85059C3.75977 4.50892 3.47643 4.22559 3.13477 4.22559C2.7931 4.22559 2.50977 4.50892 2.50977 4.85059V15.1506C2.50977 15.4922 2.78477 15.7756 3.13477 15.7756Z" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.13477 6.01631V13.9913C3.13477 15.6247 4.90977 16.6497 6.32643 15.833L9.78475 13.8413L13.2431 11.8413C14.6597 11.0247 14.6597 8.983 13.2431 8.16631L9.78475 6.16631L6.32643 4.17464C4.90977 3.35798 3.13477 4.37464 3.13477 6.01631Z" fill="white"/>
|
|
3
|
+
<path d="M16.8652 15.7756C16.5236 15.7756 16.2402 15.4922 16.2402 15.1506V4.85059C16.2402 4.50892 16.5236 4.22559 16.8652 4.22559C17.2069 4.22559 17.4902 4.50892 17.4902 4.85059V15.1506C17.4902 15.4922 17.2152 15.7756 16.8652 15.7756Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>形状</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.9播放-亮度调节" transform="translate(-328.000000, -89.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="亮度调节" transform="translate(316.000000, 80.000000)">
|
|
7
|
+
<g id="形状-2" transform="translate(12.000000, 9.000000)">
|
|
8
|
+
<path d="M8.0010087,13.0444203 C5.239188,13.0444203 2.98978691,10.7911302 2.98978691,8.02002848 C2.98978691,5.24892671 5.2371706,2.99563666 8.0010087,2.99563666 C10.7648468,2.99563666 13.0122305,5.24892671 13.0122305,8.02002848 C13.0102131,10.7911302 10.7628294,13.0444203 8.0010087,13.0444203 Z M8.0010087,4.81000038 C6.23578363,4.81000038 4.79939478,6.25016421 4.79939478,8.02002848 C4.79939478,9.78989275 6.23578363,11.2300566 8.0010087,11.2300566 C9.76623377,11.2300566 11.2026226,9.78989275 11.2026226,8.02002848 C11.2026226,6.25016421 9.76623377,4.81000038 8.0010087,4.81000038 Z M7.9808347,2.45355252 C7.48051948,2.45355252 7.07703947,2.04698942 7.07703947,1.54738202 L7.07703947,0.906185479 C7.07703947,0.404555378 7.48253688,7.45917879e-06 7.9808347,7.45917879e-06 C8.48114992,-0.00200772805 8.88462993,0.404555378 8.88462993,0.906185479 L8.88462993,1.54738202 C8.88462993,2.04698942 8.48114992,2.45355252 7.9808347,2.45355252 Z M7.9808347,16 C7.48051948,16 7.07703947,15.5934369 7.07703947,15.0938295 L7.07703947,14.452633 C7.07703947,13.9510029 7.48253688,13.5464549 7.9808347,13.5464549 C8.48114992,13.5444397 8.88462993,13.9510029 8.88462993,14.452633 L8.88462993,15.0938295 C8.88462993,15.5934369 8.48114992,16 7.9808347,16 Z M3.41949313,4.36298323 C3.18749212,4.36298323 2.95750851,4.27398434 2.7799773,4.09800926 L2.32807969,3.64492401 C1.97503467,3.29095116 1.97503467,2.71650379 2.32807969,2.36253093 C2.6811247,2.00855808 3.25406632,2.00855808 3.60711134,2.36253093 L4.05900895,2.81561618 C4.41205397,3.16958904 4.41205397,3.74403641 4.05900895,4.09800926 C3.88349515,4.27398434 3.65149414,4.36298323 3.41949313,4.36298323 L3.41949313,4.36298323 Z M2.96759551,14.1837072 C3.19959652,14.1837072 3.42958013,14.0947083 3.60711134,13.9187332 L4.05900895,13.465648 C4.41205397,13.1116751 4.41205397,12.5372278 4.05900895,12.1832549 C3.70596394,11.8292821 3.13302232,11.8292821 2.7799773,12.1832549 L2.32807969,12.6363402 C1.97503467,12.990313 1.97503467,13.5647604 2.32807969,13.9187332 C2.50359349,14.0947083 2.7355945,14.1837072 2.96759551,14.1837072 L2.96759551,14.1837072 Z M1.54331106,8.946426 L0.903795234,8.946426 C0.403480015,8.946426 0,8.5398629 0,8.0402555 C0,7.5386254 0.405497415,7.134085 0.903795234,7.134085 L1.54331106,7.134085 C2.04362628,7.134085 2.44710629,7.5406481 2.44710629,8.0402555 C2.44710629,8.5418856 2.04160888,8.946426 1.54331106,8.946426 L1.54331106,8.946426 Z M15.0962048,8.90799467 L14.4566889,8.90799467 C13.9563737,8.90799467 13.5528937,8.50143156 13.5528937,8.00182416 C13.5528937,7.50019406 13.9583911,7.09565366 14.4566889,7.09565366 L15.0962048,7.09565366 C15.59652,7.09565366 16,7.50221676 16,8.00182416 C16,8.50143156 15.59652,8.90799467 15.0962048,8.90799467 Z M12.5522633,4.3346654 C12.3202623,4.3346654 12.0902787,4.24566651 11.9127474,4.06969144 C11.5597024,3.71571858 11.5597024,3.14127121 11.9127474,2.78729836 L12.3646451,2.3342131 C12.7176901,1.98024025 13.2906317,1.98024025 13.6436767,2.3342131 C13.9967217,2.68818596 13.9967217,3.26263333 13.6436767,3.61660618 L13.1917791,4.06969144 C13.0162653,4.24768921 12.7842643,4.3346654 12.5522633,4.3346654 L12.5522633,4.3346654 Z M13.0041609,14.1553894 C13.2361619,14.1553894 13.4661455,14.0663905 13.6436767,13.8904154 C13.9967217,13.5364426 13.9967217,12.9619952 13.6436767,12.6080223 L13.1917791,12.1549371 C12.8387341,11.8009642 12.2657925,11.8009642 11.9127474,12.1549371 C11.5597024,12.5089099 11.5597024,13.0833573 11.9127474,13.4373302 L12.3646451,13.8904154 C12.5401589,14.0684132 12.7721599,14.1553894 13.0041609,14.1553894 L13.0041609,14.1553894 Z" id="形状"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="15px" height="10px" viewBox="0 0 15 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>编组</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.7播放-倍数播放中" transform="translate(-359.000000, -93.000000)" fill="#FFFFFF">
|
|
6
|
+
<g id="倍速播放" transform="translate(346.000000, 80.000000)">
|
|
7
|
+
<g id="编组" transform="translate(13.000000, 13.000000)">
|
|
8
|
+
<path d="M1.52999894,0.956249338 L6.64320271,4.1520017 C7.11153924,4.44471203 7.25391241,5.06166241 6.96120208,5.52999894 C6.88072137,5.65876807 6.77197185,5.7675176 6.64320271,5.8479983 L1.52999894,9.04375066 C1.06166241,9.33646099 0.444712028,9.19408783 0.152001696,8.7257513 C0.0526694449,8.5668197 2.29522956e-17,8.38317208 0,8.19575236 L0,1.80424764 C8.20543045e-16,1.25196289 0.44771525,0.804247642 1,0.804247642 C1.18741972,0.804247642 1.37106734,0.856917086 1.52999894,0.956249338 Z" id="矩形" opacity="0.30228016"></path>
|
|
9
|
+
<path d="M8.52999894,0.956249338 L13.6432027,4.1520017 C14.1115392,4.44471203 14.2539124,5.06166241 13.9612021,5.52999894 C13.8807214,5.65876807 13.7719718,5.7675176 13.6432027,5.8479983 L8.52999894,9.04375066 C8.06166241,9.33646099 7.44471203,9.19408783 7.1520017,8.7257513 C7.05266944,8.5668197 7,8.38317208 7,8.19575236 L7,1.80424764 C7,1.25196289 7.44771525,0.804247642 8,0.804247642 C8.18741972,0.804247642 8.37106734,0.856917086 8.52999894,0.956249338 Z" id="矩形备份-7"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>横竖</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.4播放" transform="translate(-648.000000, -29.000000)">
|
|
6
|
+
<g id="横竖" transform="translate(648.000000, 29.000000)">
|
|
7
|
+
<g transform="translate(2.000000, 2.000000)">
|
|
8
|
+
<path d="M17,9 C17.5522847,9 18.0522847,9.22385763 18.4142136,9.58578644 C18.7761424,9.94771525 19,10.4477153 19,11 L19,11 L19,17 C19,17.5522847 18.7761424,18.0522847 18.4142136,18.4142136 C18.0522847,18.7761424 17.5522847,19 17,19 L17,19 L13,19 L13,9 Z" id="矩形" stroke="#FFFFFF" stroke-width="2"></path>
|
|
9
|
+
<path d="M11,1 C11.5522847,1 12.0522847,1.22385763 12.4142136,1.58578644 C12.7761424,1.94771525 13,2.44771525 13,3 L13,3 L13,19 L3,19 C2.44771525,19 1.94771525,18.7761424 1.58578644,18.4142136 C1.22385763,18.0522847 1,17.5522847 1,17 L1,17 L1,3 C1,2.44771525 1.22385763,1.94771525 1.58578644,1.58578644 C1.94771525,1.22385763 2.44771525,1 3,1 L3,1 Z" id="矩形" stroke="#FFFFFF" stroke-width="2"></path>
|
|
10
|
+
<rect id="矩形" fill="#FFFFFF" x="5" y="3" width="4" height="2" rx="1"></rect>
|
|
11
|
+
<path d="M19.034645,6.3749592 C18.5973645,6.3749592 18.2010117,6.07554053 18.0954612,5.63179774 C17.8455866,4.57629306 17.0464188,3.94083616 15.9564487,3.9300657 C15.4243882,3.92575752 14.995724,3.4906311 15,2.95641649 C15.0043404,2.42651005 15.4351586,2 15.965065,2 L15.9736814,2 C17.9511371,2.01723273 19.5214696,3.26875971 19.9738287,5.18805496 C20.0966119,5.70719093 19.7756524,6.22632691 19.2565164,6.34911011 C19.1832773,6.36634284 19.1078841,6.3749592 19.034645,6.3749592 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>编组 5</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="9收藏列表-删除备份" transform="translate(-339.000000, -111.000000)">
|
|
6
|
+
<g id="编组-3" transform="translate(20.000000, 103.000000)">
|
|
7
|
+
<g id="编组-2" transform="translate(0.000000, 6.000000)">
|
|
8
|
+
<g id="编组-5" transform="translate(319.000000, 2.000000)">
|
|
9
|
+
<rect id="矩形" fill="#5F86FF" x="0" y="0" width="16" height="16" rx="8"></rect>
|
|
10
|
+
<path d="M10.9611989,5.19417736 C11.1946223,4.94208376 11.5728122,4.93448874 11.8148892,5.17703307 C12.0297173,5.39205093 12.0616087,5.74475899 11.8892971,5.99995897 L11.831691,6.0728222 L7.49923249,10.8055034 C7.28321386,11.0391133 6.93921571,11.0654914 6.6943473,10.8672228 L6.62554002,10.8020745 L4.16527964,8.0795613 C4.05551491,7.95859101 3.99599205,7.79525911 4.00020981,7.62660644 C4.00442757,7.45795377 4.07202854,7.29827127 4.18768201,7.18377217 C4.40610897,6.9666147 4.73866613,6.94925169 4.97576541,7.14262588 L5.04217244,7.20605975 L7.06798684,9.44596119 L10.9603988,5.19417736 L10.9611989,5.19417736 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>矩形</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="9收藏列表-删除" transform="translate(-339.000000, -111.000000)" fill="#FFFFFF" stroke="#CDCDCD">
|
|
6
|
+
<g id="编组-3" transform="translate(20.000000, 103.000000)">
|
|
7
|
+
<g id="编组-2" transform="translate(0.000000, 6.000000)">
|
|
8
|
+
<g id="矩形-2" transform="translate(319.000000, 2.000000)">
|
|
9
|
+
<rect id="矩形" x="0.5" y="0.5" width="15" height="15" rx="7.5"></rect>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>cuo</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="3.1播放列表-删除" transform="translate(-461.000000, -29.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-2" transform="translate(437.000000, 0.000000)">
|
|
7
|
+
<g id="cuo" transform="translate(24.000000, 29.000000)">
|
|
8
|
+
<path d="M11.742114,1.49969526 L1.49896211,11.7448009 C1.15706785,12.0866951 0.600268631,12.0866951 0.256420693,11.7448009 C-0.0854735642,11.4029066 -0.0854735642,10.8461074 0.256420693,10.5022595 L10.4995726,0.259107527 C10.8414669,-0.0827867304 11.3982661,-0.0827867304 11.742114,0.259107527 C12.085962,0.601001784 12.085962,1.157801 11.742114,1.49969526 L11.742114,1.49969526 Z" id="路径"></path>
|
|
9
|
+
<path d="M11.742114,11.7448009 C11.4002198,12.0866951 10.8434206,12.0866951 10.4995726,11.7448009 L0.256420693,1.49969526 C-0.0854735642,1.157801 -0.0854735642,0.601001784 0.256420693,0.257153845 C0.59831495,-0.0866940934 1.15511417,-0.0847404119 1.49896211,0.257153845 L11.742114,10.5003058 C12.085962,10.8461074 12.085962,11.4009529 11.742114,11.7448009 Z" id="路径"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>形状结合</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.17播放-正在投送" transform="translate(-696.000000, -29.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="形状结合-2" transform="translate(696.000000, 29.000000)">
|
|
7
|
+
<path d="M16.6567984,3.57781753 C19.9539215,5.36851521 22,8.86135957 22,12.6961091 C22,18.3781306 17.5139071,23 12.0011937,23 C6.48609287,23 2,18.3781306 2,12.6961091 C2,8.88841682 4.02459114,5.40541145 7.28590187,3.60733453 C7.8063746,3.31954383 8.45338427,3.52124329 8.73033305,4.05746869 C9.00966933,4.5936941 8.81389519,5.26028623 8.29342247,5.54561717 C5.72687119,6.95997317 4.13441566,9.70013417 4.13441566,12.6961091 C4.13441566,17.1630143 7.66312522,20.7985242 11.9988063,20.7985242 C16.3344873,20.7985242 19.8631968,17.1630143 19.8631968,12.6961091 C19.8631968,9.68045617 18.2540289,6.93291592 15.6612152,5.52347943 C15.1407425,5.24060823 14.9401934,4.5740161 15.2147547,4.0377907 C15.489316,3.5015653 16.1363257,3.29494633 16.6567984,3.57781753 Z M12.0011937,1 C12.5909037,1 13.0684016,1.49194991 13.0684016,2.09950805 L13.0684016,12.1795617 C13.0684016,12.7871199 12.5909037,13.2790698 12.0011937,13.2790698 C11.4114838,13.2790698 10.9339859,12.7871199 10.9339859,12.1795617 L10.9339859,2.09950805 C10.9339859,1.49194991 11.4114838,1 12.0011937,1 Z" id="形状结合"></path>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>回收站</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.702352834">
|
|
5
|
+
<g id="1.14播放列表" transform="translate(-741.000000, -28.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-2" transform="translate(322.000000, 0.000000)">
|
|
7
|
+
<g id="清空列表" transform="translate(419.000000, 26.000000)">
|
|
8
|
+
<g id="回收站-2" transform="translate(0.000000, 2.000000)">
|
|
9
|
+
<path d="M10.1,1 C10.9631,1 11.4762,1.63 11.5189,2.4364 L11.5217,2.5477 L11.5217,3.79230001 L14.1831,3.79230001 C14.6346,3.79230001 15,4.0793 15,4.50630001 C15,4.90530001 14.6815,5.1692 14.272,5.2021 L14.1831,5.2063 L13.6315,5.2063 L13.6315,12.6788 C13.6315,13.9164 13.0148,14.9279 11.7541,14.9958 L11.6169,15 L4.3831,15 C3.07829999,15 2.46089999,14.1796 2.4182,12.9714 L2.4161,12.8356 L2.4161,5.20560001 L1.8169,5.20560001 C1.3654,5.20560001 1,4.93330001 1,4.5056 C1,4.1066 1.31849999,3.8315 1.72800001,3.79650001 L1.8169,3.79230001 L4.5245,3.79230001 L4.5245,2.5477 C4.5245,1.7077 4.95780001,1.0588 5.7845,1.00350001 L5.9,1 L10.1,1 Z M12.2217,5.2063 L3.7825,5.2063 L3.7825,12.8356 C3.7825,13.2626 4.1479,13.6091 4.59870001,13.6091 L11.4055,13.6091 C11.8563,13.6091 12.2217,13.2626 12.2217,12.8356 L12.2217,5.20560001 L12.2217,5.2063 Z M6.63360001,7.3 C7.02019933,7.3 7.3336,7.61340068 7.3336,8 L7.3336,10.8 C7.33354082,11.1865575 7.02015748,11.4998928 6.6336,11.4998928 C6.24704252,11.4998928 5.93365918,11.1865575 5.9336,10.8 L5.9336,8 C5.9336,7.61340067 6.24700068,7.3 6.63360001,7.3 L6.63360001,7.3 Z M9.37269999,7.3 C9.75929932,7.3 10.0727,7.61340067 10.0727,8 L10.0727,10.8 C10.0727383,11.0501114 9.93932742,11.2812403 9.72273094,11.4063071 C9.50613446,11.5313739 9.23926554,11.5313739 9.02266906,11.4063071 C8.80607259,11.2812403 8.67266171,11.0501114 8.6727,10.8 L8.6727,8 C8.6727,7.61340068 8.98610067,7.3 9.37269999,7.3 L9.37269999,7.3 Z M10.1,2.39580001 L5.9,2.39580001 L5.9,3.79230001 L10.1,3.79230001 L10.1,2.39580001 Z" id="回收站"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="9px" height="9px" viewBox="0 0 9 9" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>失效</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="3.3播放列表-已失效" transform="translate(-517.000000, -318.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-2" transform="translate(437.000000, 0.000000)">
|
|
7
|
+
<g id="播放列表" transform="translate(0.000000, 62.000000)">
|
|
8
|
+
<g id="3" transform="translate(24.000000, 200.000000)">
|
|
9
|
+
<g id="失效" transform="translate(56.000000, 56.000000)">
|
|
10
|
+
<path d="M7.68461539,1.31538461 C6.85384616,0.484615389 5.67692307,0 4.5,0 C3.32307693,0 2.14615384,0.484615389 1.31538461,1.31538461 C0.484615389,2.14615384 0,3.32307693 0,4.5 C0,5.67692307 0.484615389,6.85384616 1.31538461,7.68461539 C2.14615383,8.51538462 3.32307693,9 4.5,9 C5.67692307,9 6.85384616,8.51538461 7.68461539,7.68461539 C8.51538462,6.85384617 9,5.67692307 9,4.5 C9,3.32307693 8.51538461,2.14615384 7.68461539,1.31538461 Z M4.5,8.30769231 C2.42307693,8.30769231 0.692307694,6.57692307 0.692307694,4.5 C0.692307694,2.42307693 2.42307693,0.692307694 4.5,0.692307694 C6.57692307,0.692307694 8.30769231,2.42307693 8.30769231,4.5 C8.30769231,6.57692307 6.57692307,8.30769231 4.5,8.30769231 Z M3.73846154,3.25384616 C3.6,3.11538462 3.39230769,3.11538462 3.25384616,3.25384616 C3.11538462,3.39230769 3.11538462,3.6 3.25384616,3.73846154 L5.19230769,5.67692307 C5.33076923,5.81538461 5.53846154,5.81538461 5.67692307,5.67692307 C5.81538461,5.53846154 5.81538461,5.33076923 5.67692307,5.19230769 L3.73846154,3.25384616 Z"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>投屏</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="2.0播放" transform="translate(-696.000000, -29.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="投屏-2" transform="translate(696.000000, 29.000000)">
|
|
7
|
+
<path d="M13.4822233,17.8814738 L17.052533,20.0706004 C17.5287233,20.3627931 17.6852178,20.9981963 17.4035278,21.4921412 C17.21797,21.8191188 16.8848603,22 16.5428081,22 C16.3706642,22 16.194049,21.9536202 16.0353189,21.8562226 L12.4359459,19.6485442 C12.1587272,19.465344 11.8390313,19.465344 11.5908758,19.6299923 L7.98926718,21.8307137 C7.51307684,22.1205875 6.90051275,21.9559392 6.62105833,21.4619943 C6.3416039,20.9680495 6.50033402,20.3326462 6.97428872,20.0427725 L10.5468341,17.8606029 C11.4187318,17.2854934 12.5812622,17.2854934 13.4822233,17.8814738 Z M19.1830935,3 C20.7368601,3 22,4.31663268 22,5.9362074 L22,16.0637926 C22.0022297,17.6833673 20.7368601,19 19.1830935,19 L18.3581441,19 C17.8059421,19 17.358815,18.5339353 17.358815,17.9583455 C17.358815,17.3827556 17.8059421,16.9166909 18.3581441,16.9166909 L19.1830935,16.9166909 C19.6346919,16.9166909 20.0013361,16.5345179 20.0013361,16.0637926 L20.0013361,5.9362074 C20.0013361,5.46548209 19.6346919,5.08330906 19.1830935,5.08330906 L4.81690058,5.08330906 C4.36530223,5.08330906 3.99865803,5.46548209 3.99865803,5.9362074 L3.99865803,16.0637926 C3.99865803,16.5345179 4.36530223,16.9166909 4.81690058,16.9166909 L5.66644202,16.9166909 C6.21864396,16.9166909 6.66577103,17.3827556 6.66577103,17.9583455 C6.66577103,18.5339353 6.21864396,19 5.66644202,19 L4.81690058,19 C3.26313399,19 2,17.6833673 2,16.0637926 L2,5.9362074 C2,4.31663268 3.26313399,3 4.81690058,3 L19.1830935,3 Z M10.1019509,13.758052 C10.1041782,14.3308426 9.65481553,14.7946406 9.1026136,14.7946406 C8.55041166,14.7946406 8.10328458,14.3308426 8.10328458,13.758052 L8.103,10.074 L6.78649534,10.0743832 C6.23429341,10.0743832 5.78716633,9.61058517 5.78716633,9.03779465 C5.78716633,8.46500413 6.23429341,8.00120614 6.78649534,8.00120614 L9.0844144,8.00016817 C9.09046776,8.00005621 9.09653431,8 9.1026136,8 L9.12,8.001 L12.2772158,8.00120614 C12.6371531,8.00120614 12.9702628,8.20295827 13.146878,8.52761686 L14.8526678,11.6559343 L16.317009,8.57863464 C16.5606932,8.06613786 17.1598435,7.85279079 17.6561546,8.10787968 C18.1524656,8.36064959 18.3536728,8.98213889 18.1099885,9.49695466 L15.8095197,14.3320487 C15.6463183,14.6775782 15.310973,14.8978823 14.9398576,14.9094772 L14.9130299,14.9094772 C14.5530926,14.9094772 14.219983,14.7077251 14.0433678,14.3830665 L11.693715,10.0743832 L10.101,10.074 L10.1019509,13.758052 Z" id="投屏"></path>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="369px" height="110px" viewBox="0 0 369 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>编组</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#000000" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#292929" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
<polygon id="path-2" points="0 0 369 0 350.173469 110 18.8265306 110"></polygon>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
12
|
+
<g id="1.17播放-正在投送" transform="translate(-222.000000, 0.000000)">
|
|
13
|
+
<g id="编组" transform="translate(222.000000, 0.000000)">
|
|
14
|
+
<mask id="mask-3" fill="white">
|
|
15
|
+
<use xlink:href="#path-2"></use>
|
|
16
|
+
</mask>
|
|
17
|
+
<path stroke="" d="M368.407155,0.5 L349.751774,109.5 L19.2482257,109.5 L0.592845387,0.5 L368.407155,0.5 Z"></path>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.66669 4.5684V15.4338C1.66669 17.6591 4.31496 19.0555 6.4286 17.9429L11.5883 15.2294L16.7481 12.5045C18.8618 11.3919 18.8618 8.61029 16.7481 7.49761L11.5883 4.77276L6.4286 2.05927C4.31496 0.946619 1.66669 2.33175 1.66669 4.5684Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="28px" height="28px" viewBox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>暂无</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.601630632">
|
|
5
|
+
<g id="1.18播放列表-没有封面" transform="translate(-500.000000, -281.000000)" fill="#FFFFFF">
|
|
6
|
+
<g id="编组-2" transform="translate(322.000000, 0.000000)">
|
|
7
|
+
<g id="播放列表" transform="translate(139.000000, 74.000000)">
|
|
8
|
+
<g id="3" transform="translate(0.000000, 188.000000)">
|
|
9
|
+
<g id="暂无-2" transform="translate(39.000000, 19.000000)">
|
|
10
|
+
<g id="暂无" transform="translate(1.000039, 2.000000)">
|
|
11
|
+
<rect id="矩形" x="3.99996113" y="0" width="18" height="2" rx="1"></rect>
|
|
12
|
+
<rect id="矩形备份-4" x="1.99996113" y="4" width="22" height="2" rx="1"></rect>
|
|
13
|
+
<path d="M23.9999217,9 C25.1044912,9 25.9999217,9.8954305 25.9999217,11 C25.9999217,11.0420316 25.9985968,11.0840527 25.9959488,11.1260007 L25.2975884,22.1890011 C25.1978293,23.7693244 23.8870167,25 22.3035479,25 L3.69644292,25 C2.1129741,25 0.802161518,23.7693244 0.702402406,22.1890011 L0.00404206326,11.1260007 C-0.0655462175,10.0236255 0.771693066,9.07356127 1.87406834,9.00397299 L1.9370374,9.00099349 L1.9370374,9.00099349 L23.9999217,9 Z M10.9999611,13.7231797 C10.4476764,13.7231797 9.99996113,14.1708949 9.99996113,14.7231797 L9.99996113,14.7231797 L9.99996113,19.2768203 C9.99996113,19.4508473 10.0453765,19.6218616 10.131718,19.7729593 C10.405728,20.2524767 11.0165826,20.4190734 11.4961001,20.1450635 L11.4961001,20.1450635 L15.4805356,17.8682431 C15.6355669,17.7796538 15.7640505,17.6511702 15.8526398,17.4961389 C16.1266498,17.0166215 15.9600531,16.4057668 15.4805356,16.1317569 L15.4805356,16.1317569 L11.4961001,13.8549365 C11.3450024,13.768595 11.1739881,13.7231797 10.9999611,13.7231797 Z" id="形状结合"></path>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>更多操作</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.4播放" transform="translate(-744.000000, -29.000000)" fill="#FFFFFF">
|
|
6
|
+
<g id="更多操作-2" transform="translate(744.000000, 29.000000)">
|
|
7
|
+
<path d="M4,10 C5.1045695,10 6,10.8954305 6,12 C6,13.1045695 5.1045695,14 4,14 C2.8954305,14 2,13.1045695 2,12 C2,10.8954305 2.8954305,10 4,10 Z M12,10 C13.1045695,10 14,10.8954305 14,12 C14,13.1045695 13.1045695,14 12,14 C10.8954305,14 10,13.1045695 10,12 C10,10.8954305 10.8954305,10 12,10 Z M20,10 C21.1045695,10 22,10.8954305 22,12 C22,13.1045695 21.1045695,14 20,14 C18.8954305,14 18,13.1045695 18,12 C18,10.8954305 18.8954305,10 20,10 Z" id="更多操作"></path>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>编组 2</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.16播放-投屏" transform="translate(-238.000000, -164.000000)">
|
|
6
|
+
<g id="编组" transform="translate(219.000000, 47.000000)">
|
|
7
|
+
<g id="1" transform="translate(19.000000, 115.000000)">
|
|
8
|
+
<g id="编组-3" transform="translate(0.000000, 2.000000)">
|
|
9
|
+
<g id="编组-2" transform="translate(1.000000, 1.000000)">
|
|
10
|
+
<rect id="矩形" stroke="#FFFFFF" x="0.5" y="0.5" width="13" height="10" rx="3"></rect>
|
|
11
|
+
<rect id="矩形" fill="#FFFFFF" x="4" y="13" width="6" height="1" rx="0.5"></rect>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>返回</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.4播放" transform="translate(-47.000000, -33.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="后退" transform="translate(47.000000, 30.000000)">
|
|
7
|
+
<g id="返回-2" transform="translate(0.000000, 3.000000)">
|
|
8
|
+
<path d="M3.87627433,15 C3.65199259,15 3.42771084,14.9025239 3.25718258,14.7075718 C2.91427247,14.3155485 2.91427247,13.6840731 3.25718258,13.2920498 L7.88554217,8.00079464 L3.25718258,2.70953949 C2.91427247,2.31751618 2.91427247,1.68604079 3.25718258,1.29401748 C3.60009268,0.901994173 4.15245598,0.901994173 4.49536608,1.29401748 L9.74281742,7.29303364 C10.0857275,7.68505695 10.0857275,8.31653233 9.74281742,8.70855564 L4.49536608,14.7075718 C4.32483781,14.9025239 4.10055607,15 3.87627433,15 Z" id="返回" transform="translate(6.500000, 8.000000) scale(-1, 1) translate(-6.500000, -8.000000) "></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>全屏</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="2.3播放-暂停备份" transform="translate(-1520.000000, -840.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="底部操作栏" transform="translate(360.000000, 770.000000)">
|
|
7
|
+
<g id="全屏-2" transform="translate(1160.000000, 70.000000)">
|
|
8
|
+
<path d="M0.865284346,8.41574803 C1.34254881,8.41574803 1.73056869,8.80339188 1.73056869,9.28019382 L1.73,13.032 L5.74463441,9.02241066 C6.08221171,8.68516051 6.63125985,8.68516051 6.96883715,9.02241066 C7.30641445,9.35966081 7.30641445,9.90817686 6.96883715,10.245427 L2.938,14.269 L6.72438462,14.2691702 C7.20164908,14.2691702 7.58967621,14.6568141 7.58967621,15.133616 C7.59160907,15.6123561 7.20358918,16 6.72438462,16 L2.3921426,16 C1.07287498,16 0,14.9281647 0,13.6101757 L0,9.28019382 C0,8.80339188 0.388019886,8.41574803 0.865284346,8.41574803 Z M13.6078574,0 C14.2527672,0 14.8387981,0.256129875 15.2694047,0.671937722 C15.279622,0.680187116 15.2897142,0.689796817 15.2996241,0.699697153 L15.323605,0.725962967 C15.7420584,1.1565126 16,1.74357821 16,2.38982435 L16,6.71980618 C16,7.19660812 15.6119801,7.58425197 15.1347157,7.58425197 C14.6574512,7.58425197 14.2694313,7.19660812 14.2694313,6.71980618 L14.269,2.951 L10.2379047,6.97952756 C10.069116,7.14815263 9.84600461,7.23343428 9.62483327,7.23343428 C9.40366194,7.23343428 9.1824906,7.14815263 9.01370195,6.97952756 C8.67612465,6.64227741 8.67612465,6.09376136 9.01370195,5.75651121 L13.045,1.728 L9.27367528,1.72889158 C8.79641082,1.72889158 8.40839093,1.34124773 8.40839093,0.86444579 C8.40839093,0.387643852 8.79641082,0 9.27367528,0 L13.6078574,0 Z" id="全屏"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>形状结合</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="2.20浏览器-打开" transform="translate(-1880.000000, -1040.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-2" transform="translate(0.000000, 84.000000)">
|
|
7
|
+
<g id="编组-5" transform="translate(0.000000, 856.000000)">
|
|
8
|
+
<g id="编组" transform="translate(1633.000000, 98.000000)">
|
|
9
|
+
<path d="M252.19951,10.4247197 C253.518297,10.4247197 254.59272,11.4972036 254.59272,12.8179296 L254.59272,17.1524712 C254.590781,17.6276223 254.202903,18.0155007 253.725812,18.0155007 C253.246782,18.0155007 252.860843,17.6276223 252.860843,17.1505318 L252.86,13.392 L248.846301,17.4065316 C248.677574,17.5771981 248.454544,17.6605919 248.233453,17.6605919 C248.012363,17.6605919 247.791272,17.5752587 247.620606,17.4065316 C247.283151,17.0690773 247.283151,16.5202293 247.620606,16.1827751 L251.65,12.154 L247.864969,12.1546575 C247.385939,12.1546575 247,11.7667791 247,11.2896886 C247,10.8106587 247.387878,10.4247197 247.864969,10.4247197 L252.19951,10.4247197 Z M256.274173,2 C256.753203,2 257.139142,2.38787844 257.139142,2.86496892 L257.139,6.634 L261.171139,2.60315097 C261.508593,2.26569673 262.057441,2.26569673 262.394895,2.60315097 C262.732349,2.94060521 262.732349,3.4894532 262.394895,3.82690744 L258.361,7.86 L262.135017,7.8608432 C262.614047,7.8608432 262.999993,8.24872164 262.999993,8.72581212 C263.001925,9.2029026 262.614047,9.59078103 262.135017,9.59078103 L257.802415,9.59078103 C257.148909,9.59078103 256.555408,9.32742656 256.122914,8.90101266 C256.118309,8.89751086 256.1138,8.89314462 256.109325,8.88872106 L256.090112,8.86804229 C255.669089,8.43663269 255.409205,7.8471246 255.409205,7.19757107 L255.409205,2.86496892 C255.409205,2.38593905 255.797083,2 256.274173,2 Z" id="形状结合"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>路径</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.16播放-投屏" transform="translate(-559.000000, -164.000000)" fill="#5F86FF" fill-rule="nonzero">
|
|
6
|
+
<g id="编组" transform="translate(219.000000, 47.000000)">
|
|
7
|
+
<g id="1" transform="translate(19.000000, 115.000000)">
|
|
8
|
+
<g id="路径-2" transform="translate(321.000000, 2.000000)">
|
|
9
|
+
<path d="M13.182098,3.32362894 C13.590589,2.90347293 14.2524213,2.89081456 14.6760562,3.29505512 C15.0520053,3.65341821 15.1078152,4.24126499 14.8062699,4.66659829 L14.7054593,4.78803701 L7.12365685,12.6758389 C6.74562426,13.0651888 6.1436275,13.1091524 5.71510777,12.7787047 L5.59469503,12.6701242 L1.28923936,8.13260217 C1.0971511,7.93098502 0.992986095,7.65876519 1.00036717,7.3776774 C1.00774824,7.09658961 1.12604995,6.83045212 1.32844351,6.63962029 C1.71069071,6.27769116 2.29266573,6.24875282 2.70758947,6.57104313 L2.82380177,6.67676625 L6.36897698,10.4099353 L13.1806979,3.32362894 L13.182098,3.32362894 Z" id="路径"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>形状</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="1.8播放-音量调节" transform="translate(-329.000000, -89.000000)" fill="#FFFFFF" fill-rule="nonzero">
|
|
6
|
+
<g id="音量调节" transform="translate(316.000000, 80.000000)">
|
|
7
|
+
<g id="形状-2" transform="translate(13.000000, 9.000000)">
|
|
8
|
+
<path d="M7.90654521,15 C7.5877193,15 7.26889339,14.9203405 6.97537112,14.7610215 C6.95681511,14.7508522 6.93994602,14.7406829 6.92139001,14.7288187 L3.33164642,12.3763207 L2.0951417,12.3763207 C0.939608637,12.3763207 0,11.4322707 0,10.2712756 L0,5.6950907 C0,4.53409564 0.939608637,3.59004564 2.0951417,3.59004564 L3.33333333,3.59004564 L6.92476383,1.26805553 C6.94163293,1.25788623 6.95850202,1.24771693 6.97537112,1.23924251 C7.58940621,0.905350501 8.31309042,0.922299334 8.91194332,1.28161459 C9.54622132,1.66296333 9.92577598,2.3460013 9.92577598,3.10869879 L9.92577598,12.8915652 C9.92577598,13.6559575 9.54622132,14.3389955 8.91194332,14.7186494 C8.59986505,14.9050865 8.25404858,15 7.90654521,15 Z M7.70917679,13.445792 C7.90148448,13.5390106 8.06174089,13.4729101 8.14439946,13.4237585 C8.32152497,13.3169809 8.42611336,13.1186795 8.42611336,12.8898703 L8.42611336,3.10869879 C8.42611336,2.87988954 8.31983806,2.6815882 8.14439946,2.57481055 C8.0634278,2.52565893 7.90148448,2.46125337 7.70748988,2.55447195 L3.9608637,4.97815506 C3.83940621,5.0561197 3.69939271,5.09849178 3.55431849,5.09849178 L2.0951417,5.09849178 C1.76619433,5.09849178 1.49966262,5.36628334 1.49966262,5.69678558 L1.49966262,10.2729705 C1.49966262,10.6034727 1.76619433,10.8712643 2.0951417,10.8712643 L3.55431849,10.8712643 C3.69939271,10.8712643 3.84278003,10.9136364 3.96423752,10.9932959 L7.70917679,13.445792 Z M11.5350877,10.1899212 C11.4541161,10.1899212 11.3731444,10.1763621 11.2938596,10.149244 C10.9008097,10.0153482 10.6916329,9.58654275 10.8248988,9.19332982 C10.9480432,8.82892992 11.0104588,8.44419141 11.0104588,8.05267336 C11.0104588,7.59166511 10.9244265,7.1459108 10.7557355,6.72727463 C10.6005398,6.34084123 10.784413,5.90186646 11.1690283,5.7459372 C11.5536437,5.59000793 11.9905533,5.77475021 12.145749,6.16118361 C12.3869771,6.76117229 12.5101215,7.39675353 12.5101215,8.05436825 C12.5101215,8.61198485 12.4207152,9.15943216 12.2435897,9.68145621 C12.1390013,9.99161986 11.847166,10.1899212 11.5350877,10.1899212 L11.5350877,10.1899212 Z M13.5981781,11.920397 C13.4919028,11.920397 13.3839406,11.8983636 13.282726,11.849212 C12.9065452,11.6729441 12.7446019,11.2254949 12.9183536,10.8475359 C13.2995951,10.0238226 13.5003374,9.05773916 13.5003374,8.05097848 C13.5003374,6.88998342 13.2253711,5.76288603 12.7260459,4.87985183 C12.5219298,4.51714681 12.648448,4.05783343 13.0077598,3.85275255 C13.3670715,3.64597679 13.8259109,3.77478792 14.030027,4.13579807 C14.664305,5.25950569 15,6.61202256 15,8.05097848 C15,9.27637911 14.7503374,10.4627974 14.2780027,11.4831172 C14.1514845,11.7593831 13.8815789,11.920397 13.5981781,11.920397 L13.5981781,11.920397 Z" id="形状"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import "./lzc-video-player.scss"
|
|
2
|
+
import "virtual:svg-icons-register"
|
|
3
|
+
import NativeVideoPlayer from "@/components/Video/NativeVideoPlayer.vue"
|
|
4
|
+
export { NativeVideoPlayer as LzcVideoPlayer }
|
|
5
|
+
export type { NativePlayer, NativePlayerAPI } from "@/components/Video/native"
|
|
6
|
+
export { init } from "@/i18n"
|