Reputation: 111
I have an animation in an iframe, but I don't want it to load until you scroll down to it. Is this possible? Thanks!
Upvotes: 1
Views: 610
Reputation: 1492
You could try my project https://github.com/emn178/jquery-lazyload-any.
Lazyload youtube iframe demo: http://emn178.github.io/jquery-lazyload-any/samples/youtube/
Usage:
<div class=".lazyload">
<!--
<iframe src="xxx" />
-->
</div>
<script>
$('.lazyload').lazyload();
</script>
Upvotes: 2