Skip to content

Instantly share code, notes, and snippets.

@f1729
Created July 23, 2018 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save f1729/efd2e3d58277151dfd63767acf20c082 to your computer and use it in GitHub Desktop.
Save f1729/efd2e3d58277151dfd63767acf20c082 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Bookmarklet</title>
</head>
<body>
<h1>First Class</h1>
<iframe src=""></iframe>
<a href="javascript:(function () { const iframe = document.createElement('iframe'); iframe.style.cssText = 'position:absolute;top:0;left:0;width: 100vw;height:80vh;z-index:99999;overflow: hidden;background:#151414'; iframe.src = 'https://player.vimeo.com/video/197230029?api=1&player_id=player1&autoplay=true'; iframe.setAttribute('frameBorder', '0'); iframe.setAttribute('scrolling', 'no'); document.body.innerHTML= ''; document.body.setAttribute('style', 'display:block !important;background: #151414'); document.body.appendChild(iframe); })();">Hello!~!</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment