- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用我网站上的“Stratus 2”网络播放器时遇到问题。我已下载“Jquery”并将其放入公用文件夹中。它被命名为 jquery.js
然后我在结束正文标记之前附加了以下代码。
<html class="html">
<head>
<script type="text/javascript">
if(typeof Muse == "undefined") window.Muse = {}; window.Muse.assets = {"required":["jquery-1.8.3.min.js", "museutils.js", "jquery.scrolleffects.js", "jquery.musepolyfill.bgsize.js", "jquery.watch.js", "webpro.js", "musewpslideshow.js", "jquery.museoverlay.js", "touchswipe.js", "index.css"], "outOfDate":[]};
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="http://stratus.sc/stratus.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.stratus({
download: false,
align: 'top',
user:false,
color:'E8C58B',
links: 'https://soundcloud.com/man-in-a-loft-downtown/sets/the-latest'
});
});
</script>
我也尝试过在 head 标签中输入代码。播放器不显示。有什么想法吗?
我在控制台上收到这个错误
$.stratus is not a function
但我看到 stratus.js 文件确实加载了。
全头代码: http://shrib.com/aA2V6JqX
请查看并相应地进行编辑。
最佳答案
在浏览了您的网站后,我现在正在听您的音乐播放器,听起来不错!
您正在加载两个不同版本的 jQuery。
// version 1.8.3
window.Muse.assets = {"required":["jquery-1.8.3.min.js", "museutils.js", "jquery.scrolleffects.js", "jquery.musepolyfill.bgsize.js", "jquery.watch.js", "webpro.js", "musewpslideshow.js", "jquery.museoverlay.js", "touchswipe.js", "index.css"], "outOfDate":[]};
和 1.7.2
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
如果您检查生成的 HTML,您会看到 Muse 在加载 stratus 插件后加载 jQuery,因此会覆盖它。
一个糟糕但有效的解决方案是等到 Muse 加载的 jQuery 加载完毕,但我不知道有什么简单的方法可以检测到它,因此您可以等待它。删除加载 1.7.2 的行并将初始化脚本更改为
function checkjQuery() {
if (window.jQuery) {
$.getScript( "http://stratus.sc/stratus.js", function() {
$.stratus({
download: false,
align: 'top',
user:false,
color:'E8C58B',
links: 'https://soundcloud.com/man-in-a-loft-downtown/sets/the-latest'
});
});
} else {
setTimeout(checkjQuery, 10);
}
}
checkjQuery();
关于javascript - Stratus 2、jQuery 和 Adobe Muse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25308319/
我对 SoundCloud 的 Stratus 播放器是否可以在页面之间连续播放感到困惑,或者至少可以在原来的位置拾取轨道。 SoundCloud 对 Stratus 播放器的描述如下......“你
我想知道 Adobe Stratus 如何工作?了解如何自己做类似的事情。那么,Stratus 使用什么网络黑客来工作呢? 最佳答案 P2P 软件使用的一种常见黑客方法是一种称为打洞的方法。这用于
我已经尝试使用 Soundcloud 刚刚推出的这个新功能,基本上是您网站底部/顶部的一个小型迷你播放器。说明在这里:http://stratus.sc ,我关注了,但那个玩家拒绝出现。 HTML
我对使用 Cirrus (http://labs.adobe.com/technologies/cirrus/rtmfpgroups.html) 创建 P2P 应用程序很感兴趣。 给出的示例创建与 A
我在使用我网站上的“Stratus 2”网络播放器时遇到问题。我已下载“Jquery”并将其放入公用文件夹中。它被命名为 jquery.js 然后我在结束正文标记之前附加了以下代码。 if
我正在尝试自定义我的 Stratus 2 Beta有一个主题,所以我创建了一个名为“stratus.css”的单独 CSS 文件,并将其放在我网站的 CSS 文件夹中 - CSS 代码与 this 完
我被要求将 Stratus 2 Beta 添加到我们的网站,以便我们可以播放音乐。我去了 stratus 网站,他们让将他们拥有的代码添加到网站 HTML 中看起来非常简单,但我无法让它工作。 这就是
我是一名优秀的程序员,十分优秀!