Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8576

CSSでブラーアニメーション 円がだんだんにじむ

$
0
0

ページを読み込むとcssで円がにじむメモです

test.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<link rel="stylesheet"  href="style.css">
<title>タイトル</title>
<style type="text/css">
    .r{
        width: 200px;
        height: 250px;
        border-radius: 50%;
        background: orange;
        -ms-filter: blur(1px);
        filter: blur(1px);
        transition: 3s all;
    }
    .blurAnime{
        -ms-filter: blur(10px);
        filter: blur(10px);
    }
</style>
<body>
<main>
<!-- これ円 -->
<div class="r"></div>
</main>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script>
$(function(){
    $('.r').addClass('blurAnime');
});
</script>
</body>
</html>


Viewing all articles
Browse latest Browse all 8576

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>