I ran into this as well. Instead of evaluating with {{ }}, use string + value concatenation.
This will work:
<span ng-style="{'background':'transparent url(' + item.img + ')'}"></span>)
Here’s a working version of your fiddle
I ran into this as well. Instead of evaluating with {{ }}, use string + value concatenation.
This will work:
<span ng-style="{'background':'transparent url(' + item.img + ')'}"></span>)
Here’s a working version of your fiddle