Can';不能让jQuery Shiner插件工作

Can';不能让jQuery Shiner插件工作,jquery,Jquery,我用它在一些元素上添加了一个发光效果,但是我不能让它工作,也没有文档 这就是我所拥有的: 这个插件不适用于文本,只适用于图像 尽管如此,JSFIDLE或其他代码片段似乎都不起作用。我实现这一点的唯一方法是下载文件并在本地主机中创建一个小示例: <html> <head> <script src="jquery-1.7.min.js"></script> <script src="jquery.pixelentity.shiner.min.j

我用它在一些元素上添加了一个发光效果,但是我不能让它工作,也没有文档

这就是我所拥有的:


这个插件不适用于文本,只适用于图像

尽管如此,JSFIDLE或其他代码片段似乎都不起作用。我实现这一点的唯一方法是下载文件并在本地主机中创建一个小示例:

<html>
<head>
<script src="jquery-1.7.min.js"></script>
<script src="jquery.pixelentity.shiner.min.js"></script>
<style>
body { background: black; color:green; }
</style>
<script>
jQuery(document).ready(function () {
    $(".peShiner").peShiner({hover:true,glow:0,duration:3});
})
</script>
</head>
<body>

<div class="peShiner">
    <a href="#"><img src="http://blog.reegle.info/wp-content/uploads/postit/small_sun.gif"/></a>
</div>

</body>
</html>

正文{背景:黑色;颜色:绿色;}
jQuery(文档).ready(函数(){
$(“.peShiner”).peShiner({hover:true,glow:0,duration:3});
})

您可以从页面源代码下载js文件。也许这是由于jquery的版本造成的,但即使如此,我也无法从他们的源页面中在这么一个片段中包含js。

那么,您尝试过这些步骤了吗?结果如何?
<html>
<head>
<script src="jquery-1.7.min.js"></script>
<script src="jquery.pixelentity.shiner.min.js"></script>
<style>
body { background: black; color:green; }
</style>
<script>
jQuery(document).ready(function () {
    $(".peShiner").peShiner({hover:true,glow:0,duration:3});
})
</script>
</head>
<body>

<div class="peShiner">
    <a href="#"><img src="http://blog.reegle.info/wp-content/uploads/postit/small_sun.gif"/></a>
</div>

</body>
</html>