Pixastic - jQuery 插件不起作用?

发布于 2024-11-17 05:14:33 字数 920 浏览 0 评论 0原文

我对名为 Pixastic 的 jQuery 插件有疑问。我让它作为独立库工作,但我不能将它与 jQuery 一起使用,因为它不起作用,我使用了文档中的代码,但由于某种原因仍然无法让它工作。

我遵循的文档: http://www.pixastic.com/lib/docs/#jquery< /a>

HTML(我无法放置完整的 HTML 页面,因为它不会在此处显示?bug?,但只是为了让您确定我包含了所有内容)

<script src="jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="pixastic.full.js" type="text/javascript"></script>
<script src="f.js" type="text/javascript"></script>
<img id="image" src="014.jpg" />

JS (f.js)

$(document).ready(function()
{
    /*
    Pixastic.process(document.getElementById("image"), "blurfast",
    {
    amount : 3
});
    */

    Pixastic.process(document.getElementById("image"), "desaturate"); // - Works
    //$("#image").pixastic("desaturate"); // - Not so much...
});

I have a problem with jQuery plugin called Pixastic. I got it working as standalone library, but I cannot use it with jQuery because it does not work, I used code from documentation and still can't get it to work for some reason.

Documentation that I followed: http://www.pixastic.com/lib/docs/#jquery

HTML (I cannot put full HTML page since it won't show it here ?bug?, but just so you are sure that I am including everything allright)

<script src="jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="pixastic.full.js" type="text/javascript"></script>
<script src="f.js" type="text/javascript"></script>
<img id="image" src="014.jpg" />

JS (f.js)

$(document).ready(function()
{
    /*
    Pixastic.process(document.getElementById("image"), "blurfast",
    {
    amount : 3
});
    */

    Pixastic.process(document.getElementById("image"), "desaturate"); // - Works
    //$("#image").pixastic("desaturate"); // - Not so much...
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风疏影 2024-11-24 05:14:33

从您链接到的文档中:

链接操作时,确保在调用 pixastic() 方法之前完全加载图像尤为重要,因此将 Pixastic 代码放入 onload 事件或类似事件中可能是明智的做法。

您可能需要使用 $(window).load() 而不是 $(document).ready()$("#image").load() 可能是一个更好的主意。

From the documentation you linked to:

When chaining actions, it's especially important that you ensure that the image is fully loaded before calling the pixastic() method, so it might be wise to put the Pixastic code in an onload event or similar.

It's likely that you need to use $(window).load() rather than $(document).ready(). $("#image").load() might be an even better idea.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文