# 点播播放器LOGO设置（视频）

***

new Vue({ el: '#player', data() { return { vodPlayerJs: '<https://player.polyv.net/script/player.js>', vid: '88083abbf52f62d11f1fe1eda050ef2e\_8', }; }, mounted(){ this.loadPlayerScript(this.loadPlayer); }, methods: { loadPlayerScript(callback) { if (!window\.polyvPlayer) { const myScript = document.createElement('script'); myScript.setAttribute('src', this.vodPlayerJs); myScript.onload = callback; document.body.appendChild(myScript); } else { callback(); } }, loadPlayer() { const polyvPlayer = window\.polyvPlayer; this.player = polyvPlayer({ wrap: '#player', vid: this.vid , autoplay:false }); } }, destroyed() { if (this.player) { this.player.destroy(); } } })

### 视频说明

1.在点播后台里找到并点击【播放器】，选择需要修改的播放器并点击修改。\
2.找到【播放器Logo】,点击【上传】，进行相关设置。\
3.播放器可以自由添加链接，选择LOGO的位置（左上角、左下角、右上角、右下角、不显示），还可以自定义LOGO的透明度，设置完毕后点击保存。\
4.观众通过播放器播放视频，点击LOGO后会跳转到指定的页面。\
5.注意：\
LOGO大小：播放器会展示LOGO的原始尺寸，超过200\*200（像素）会被等比缩放；\
LOGO格式：支持JPEG，PNG，GIF等图片格式。如果需要LOGO有透明效果，则建议图片使用PNG格式


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://polyv.gitbook.io/document/docs/vod/product/unclassed/v_logo.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
