Ionic framework list scrolling

I have my simple application using ionic framework.

It's looks like : enter image description here

Here the list code :

 <ion-list show-Reorder="data.showReorder">
        <ion-item class="item-avatar item-icon-right" ng-repeat="band in bands" type="item-text-wrap" href="#/bands/{{auth.profile.name}}/{{band.id}}">

My problem is, when I try to scrolling the list up and down, it always shows blur on selected list, and it makes the view when doing scrolls is not smooth enough.

I can solve that blur problem, but I lose the list "ng-click" and "href" capabilities, like

 <ion-list show-Reorder="data.showReorder">
        <ion-item class="item-avatar item-icon-right" ng-repeat="band in bands" type="item-text-wrap">

How to resolve that blur problem without losing ng-click and href capabilities, in order to make scrolls are smoother?