Ok, so I have a big heading on a page that has an image as the background of the text:
.big-heading {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-image: url('https://images.pexels.com/photos/169789/pexels-photo-169789.jpeg?dl&fit=crop&w=640&h=426');
-webkit-background-size: cover;
background-size: cover;
font-size: 100px;
}
<h1 class="big-heading">
I'm<br>
huge text<br>
example<br>
example
</h1>
However, I want to use the ScrollMagic jQuery plugin to rotate the background of the text as you scroll down the page. I know how to use ScrollMagic, I just don't know how to transform the background of transparent text in CSS.
Any help would be appreciated.