LoginSignup
2
2

More than 3 years have passed since last update.

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

Posted at

ページを読み込むと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>

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2