In CSS we have transform
and filter
, and we also have backdrop-filter
. But as far as I can see, we don't have backdrop-transform
, or anything like it.
To explain what I mean: backdrop-filter
allows you to filter things that are behind the some particular element, so for example you could adjust the hue of a particular region of your background image by positioning a div
over that region, and then applying backdrop-filter: hue-rotate(90deg)
to it, like this:
So backdrop-transform
is the analogue of this for the transform
property. You could transform
part of a background image, like this:
You could also do something like this with a single embedded youtube video (or any other iframe), for example:
Note that if you tried to use two separate iframes to simulate this, you'd need to somehow keep then in sync with one another (with regard to scrolling, video playback, etc.), which may be hard/impossible if the iframe is cross-domain. This is not to mention the costs of embedding a new iframe/video for every segment that you want to transform.
Maybe I'm too drunk on the amazing promises of Houdini, but I think something like this would be really powerful and very useful (for me, at least!). For example, you could embed a video element, but break it up into quarters, and even jumble those quarters around using CSS! Doing it with 4 different masked videos would be tedious and trying to keep them perfectly in sync frame-by-frame might be troublesome (esp. given the low time resolution of the HTML5 video API), and cutting the video up on the server-side just seems unnecessarily arduous.
For my particular use case, I don't even have control over the video (it's in a cross-domain iframe), so CSS is the only way to achieve what I'd like to do. backdrop-filter
gets me half-way there, but I also need to be able to transform the segments a bit, independently.
Possible Solution #1: element()
The CSS element(...)
can be used anywhere that the url(..)
function can. It allows you to use a full snapshot (including cross-domain content) of any element on the page as an image (mind-blowing). Here's a good into with some demos for those interested. The only problem is that it's only currently supported by Firefox, but it is on a standards track, so it's quite possible that it may be supported by other browsers in the future. If we ever get a cross-browser version of the element()
function, we could achieve everything that is possible with the hypothetical backdrop-transform
property. We'd just position a div over the region, then get a live snapshot of it, and transform it as you wish. Performance could be a problem, depending on how element()
is implemented behind the scenes. Here is the chromium issue for element()
.
You can create this by you own combining different features. Basically you use two elements where inside one you remove a part that you recreate with another element then you can easily apply any kind of transformation.
Here is a basic idea with a fake transparency:
The main trick is to have the same background for both and rely on clipping and gradient to simulate the needed effect.
Instead of clipping you can also adjust the background size/position:
Another idea is to use
clip-path
to have a perfect transparency but it can be a bit tricky to find the different values:And to make it easier to handle you can consider CSS variable to easily adjust the region you want to target:
As you can see, the code is reduced to only one container where you can easily set the image, the top/left position of the region and its width/height then the transformation you need to apply.