I'm applying a CSS mix-blend-mode effect to certain images in a Jquery slideshow. This works on all browsers I've tested including Firefox on Windows, but does not work on Firefox on OSX. It appears that the mix-blend-mode gets applied to the whole slideshow, rather than the specified images, and all of the images blend together at once.
Link to my site: http://bit.ly/1hDawdu
As a note, this is on a Squarespace page. Here's an example of my Jquery code, which applies the effect to the 9th slide in the slideshow on a particular page:
$("#collection-53a70027e4b0c63fc41ac520 .slide:nth-child(9)").css("background", "#ff0000"); $("#collection-53a70027e4b0c63fc41ac520 .slide:nth-child(9) img").css("mix-blend-mode", "screen");
Any thoughts on what might be going on with this one browser?
EDIT:
in response to IMI below, the issue doesn't appear to have anything to do with how the mix-blend-mode is targeted. if you highlight the image on the splash page, or any image on the Index page, you will get the same crazy effects when you scroll the page. this seems to be specifically a mix-blend-mode issue with Firefox.
EDIT: Added Screenshot of visual mix-blend-mode rendering issues. Can be seen easily when page is resized.