像素效应问题

时间:2011-07-03 13:59:54

标签: javascript jquery image-processing pixastic

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/library/js/pixastic.custom.js"></script>

<script type="text/javascript">

        $(document).ready(function()    {
            $(".attachment-thumbnail").load();
        $('.attachment-thumbnail').pixastic("desaturate");
    });
</script>
</head>

<body>
<img class="attachment-thumbnail" src="image1.jpg"/>
</body>
</html>

我已经在这方面工作了将近一天,甚至无法接近。您可以看到不会变得不饱和的缩略图图像here 任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

第40行你有一个JS错误:

TypeError: Property '$' of object [object DOMWindow] is not a function

第40行是:

$(".attachment-thumbnail").load();

您似乎遇到了jQuery的麻烦(jQuery函数在Chrome调试器中不起作用)

答案 1 :(得分:0)

你没有jquery核心加载dude :-) 你需要添加

<script type="text/javascript" src="jquery.js ... 

在添加pixastic之前