nanoScroller JS スクリプトを使用しようとしていますが、IE9 を除く Chrome と Firefox で動作します。teste ページでテストを行って動作するため、問題はわかりませんが、私のプロジェクトでは動作しません。スクリプトは次のとおりです。
$(".lista-noticia").click(function () {
$(".noticia-completa:visible").hide("slow");
if ($(this).closest("li").find(".noticia-completa").is(':visible')) {
$(".noticia-completa").hide("slow");
$(".lista-noticia").removeClass("ativo");
} else {
$(this).closest("li").toggleClass("ativo").find(".noticia-completa").slideToggle(1200, function(){
$(this).nanoScroller();
});
$(".lista-noticia").not(this).removeClass("ativo");
}
});
そしてHTML
<div class="noticia-completa nano">
<div class="content">
<p>Lorem ipsum dolor sit amet.....</p>
<img src="images/index/foto-noticia.png" alt="Imagem Noticia">
<p>Donec non egestas magna....</p>
<p>Donec non egestas magna....</p>
<p>Donec non egestas magna....</p>
</div>
</div>