公開日:
CodingDiary-3

Blog

CssAnimation

-iframeのscrollbarを消す-


はじめまして
GoogleFontsのiconや絵文字を利用してCSSアニメーションで遊んでいます
今回 iframeのscrollbarを消します
ご覧頂けたら幸いです😄️ 😅️


Demo

iframeで表示しています



iframeを記述すると最初はこんな感じ "src"に表示したいファルダを記述します

HTML
        
        <iframe src="padres/index.html" frameborder="0"></iframe>
        
        

表示したいフォルダを記述


scrollbarを消します

HTML
        
        <iframe src="padres/index.html"
          scrolling="no" ←これを記述
          frameborder="0">
        </iframe>
        
        

scrolling="no"を記述


表示したいフォルダのサイズ300x300に合わせます

HTML
        
        <iframe src="padres/index.html"
          title="padres"
          width="300"
          height="300"
          scrolling="no"
          frameborder="0">
        </iframe>
        
        

I'm rooting for the Padres.



参考サイト:
・MDN web docs
 https://developer../iframe
・英語翻訳 DeepL
 https://www.deepl.com/

最後までご覧いただきありがとうございました
しばらくanimationで遊んでみたいと思っています
お付き合い頂けたら幸いです

Mail

過去のブログはこちら↓
1)CssAnimation -GoogleIconの{font-variation-settings:}の変更-
2)CssAnimation -絵文字でパラパラ漫画風アニメ-
3)CssAnimation -iframeのscrollbarを消す-

TOP