无法获得jQuery Shiner插件

时间:2014-09-27 06:26:03

标签: jquery

我使用this plugin在某些元素上添加shine effect,但我无法使其工作,也没有文档。

这就是我所拥有的: http://jsfiddle.net/iaezzy/33cwq8cx/

$("h1").peShiner({api:true, paused:true, reverse:true,repeat:1});

1 个答案:

答案 0 :(得分:1)

好吧,这个插件不仅仅在图像上处理文本。

尽管如此,jsfiddle或SO片段似乎也不起作用。我让这个工作的唯一方法是下载文件并在我的localhost中创建一个小样本:

<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>

您可以从页面源下载js文件。也许这是由于jquery的版本引起的,但即使这样,我也无法在SO片段中设置来自其源页面的js。