|
- <html>
- <head>
- <style>
- html, body {
- margin: 0;
- }
- iframe {
- max-height: 100%;
- }
- </style>
- </head>
- <body>
- <div class="social-wrap"></div>
- <script>
- if (parent.document.body.clientWidth > 767) {
- document.querySelector('.social-wrap').innerHTML = '<a class="twitter-timeline" data-lang="de" data-height="500" href="https://twitter.com/hkhamburg?ref_src=twsrc%5Etfw"></a>';
- } else {
- document.querySelector('.social-wrap').innerHTML = '<a class="twitter-timeline" data-lang="de" data-height="350" href="https://twitter.com/hkhamburg?ref_src=twsrc%5Etfw"></a>';
- }
-
- function checkIframe() {
- setTimeout(() => {
- const iframe = document.querySelector('iframe');
- if (iframe) {
- iframe.setAttribute('tabindex', '-1');
- }
- else {
- checkIframe();
- }
- }, 1000)
- }
- checkIframe();
- </script>
-
- <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
- </body>
- </html>
|