You would give your image an ID attribute, then with javascript, grab the image, and do a setInterval() to swap the image every n milliseconds.
Say the images are called avatar.jpg and avatar_closed.jpg to represent the open and closed eye positions. And say the ID of the image is "myImage".
You could do something like this:
<!DOCTYPE html>
<html>
<head><title>my title</title></head>
<body>
<img id="myImage" src="/path/to/image/avatar.jpg" />
<!-- more html content -->
<!-- this script gets placed just before the closing </body> tag -->
<script type="text/javascript">
var img = document.getElementById('myImage');
setInterval(function() {
img.src = ( img.src.indexOf( '_closed' ) != -1 )
? img.src.replace('_closed','')
: img.src.replace('.jpg', '_closed.jpg');
}, 400); // swaps the image src ever 400 milliseconds
</script>
</body>
</html>