Just shipped a site with a whole rainbow of sticky headers that scroll up and down the full width of the page; as they flew by the bottom toolbar would shift through colors not corresponding to the top sticky header and it was annoying.
No good docs or StackOverflow answers that I could see so here's a quick note to Future Me for when I forget how to do this. At the very bottom of your page, add this:
<div class="glassy" style="position:fixed;left:0;bottom:0;right:0;height:5px;z-index:8675309"></div>
My device and simulators seem to be sampling four to five pixels above the bottom edge; a 5px stripe has worked for me so far.
Feel free to break out the styling into your CSS. Also feel free to substitute the z-index of your choice; just be sure it's higher than anything that might scroll past, or you'll see that element's background color sampled.
I have no idea why this works; maybe it's sampling the div and the main color it finds is transparent?