1
我正在使用this plugin在某些元素上添加shine effect
,但我無法使其工作,也沒有任何文檔。無法讓jQuery Shiner插件工作
這是我有: http://jsfiddle.net/iaezzy/33cwq8cx/
$("h1").peShiner({api:true, paused:true, reverse:true,repeat:1});
我正在使用this plugin在某些元素上添加shine effect
,但我無法使其工作,也沒有任何文檔。無法讓jQuery Shiner插件工作
這是我有: http://jsfiddle.net/iaezzy/33cwq8cx/
$("h1").peShiner({api:true, paused:true, reverse:true,repeat:1});
嗯,這個插件不會對文字工作,只在圖像。
儘管如此,jsfiddle或SO片段似乎都不起作用。我得到這個工作的唯一途徑是下載文件,並在我的本地創建一個小樣本:
<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。
那麼,你嘗試過的步驟?結果是什麼? – Niloct 2014-10-03 20:11:03