通过导航修复音乐播放器
我正在创建一个乐队的网站。乐队希望有一个音乐播放器,在您浏览页面时保持固定状态,这是一个常见的问题。
在你意识到之前我想知道哪种技术最好是: - 使用ajax调用来更新内容但保持播放器固定 - 使用带有框架的系统,如此讨厌?
您会使用该技术来获得良好的 SEO 排名吗?
I'm creating the website of a music band. The band would like to have a music player that remains fixed while you browse the pages, a common problem.
Before you realize I wanted to know which technique is best is:
- Use ajax calls to update the content but keep the player fixed
- Use the system with the frames, so hated?
you would use that technique for a good SEO ranking?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Iframe 始终是一种不好的 SEO 做法。要保持播放器固定,您可以使用 CSS(特别是使用
position:absolute
或position:fixed
)。无论如何,作为最后的建议,我建议当访问者到达您的网站时不要启动音乐。这不是一个糟糕的 SEO 做法,但确实很烦人。To use Iframe is always a bad SEO practice. To just keep the player fixed you can use CSS (in particular use the
position: absolute
orposition: fixed
). Anyway, as a final suggest, I advice to not start the music when the visitor arrives on your website. It is not a bad SEO practice but it is really annoying.