I'm working on an AngularJS frontend that features multiple divs with background images that are set dynamically. The images are set using the following code:
<div ng-style="{'background-image' : 'url(path/to/image/' + imageFile + ')'}">
What I'd like to achieve is to have these images fade into and out of a neutral white background color when the user hovers over them. I know this can be done using CSS3 transitions, but I am unsure how to implement it when dealing with dynamic background images.