Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <style>
            @keyframes spin {
                from {
                    transform: rotate(0deg);
                }
                to {
                    transform: rotate(360deg);
                }
            }
            .circle {
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: purple;
                border: 20px dotted red;
            }
            .spin {
                animation: spin 5s linear 1;
            }
            .blur {
                filter: url(#svg-filter);
            }
        </style>
    </head>
    <body>
        <svg xmlns="http://www.w3.org/2000/svg">
            <filter id="svg-filter" width="3" height="3" x="-1" y="-1">
                <feGaussianBlur in="SourceGraphic" stdDeviation="5" />
            </filter>
        </svg>
        <div class="blur">
            <div class="circle"></div>
        </div>
        <div class="blur">
            <div class="circle spin"></div>
        </div>
        <div class="circle spin blur"></div>
    </body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers