2014-09-27 84 views

回答

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。