Skip to content

Instantly share code, notes, and snippets.

HTML5 Video Play on Hover

Play an HTML5 Video on hover using gifycat.

Combine with Video url (vimeo/youtube) to grab thumbnail

A Pen by Andrea Perazzi on CodePen.

License.

@diVineProportion
diVineProportion / wtmsg.py
Last active December 19, 2019 03:50
gamechat, damage, killfeed, event messages
import os
import sys
import time
import requests
def gamechat(id_msg=0):
url_gamechat = "http://localhost:8111/gamechat?lastId={}"
url_gamechat = url_gamechat.format(id_msg)
req_gamechat = requests.get(url_gamechat, timeout=0.02)
pygame
requests