CSS Progress Circle [終了]


112

私はこのWebサイトを検索してプログレスバーを見つけましたが、見つけたものは100%に達するアニメーションサークルを示しています。

下のスクリーンショットのように、特定の割合で停止したいと思います。CSSだけを使用してそれを行う方法はありますか?

円形の進行状況バー


私はスクリプトを探していません。これに関するCSS3情報を探しています。
Adam GunShyが2013

8
「Cssプログレスサークルの実行方法」という質問を無視してください。まだ有効です。これは新しい表現で再開する必要があると思います。この結果は最初に検索され、古い回答が含まれています。
Ciantic 2016

そのスクリーンショットはどのWebサイトからですか?
MoralCode

10
これは、Googleで「円形の進行状況インジケータcss」の結果の第1位です。質問が閉じられたのは残念です。
Gopherkhan 2017

LESSを使用している場合は、cssscript.com / pure
css

回答:


119

私はCSS3とLESS JavaScriptライブラリーでそれを正確に行う方法についてのチュートリアルを作成しました。こちらのブログ投稿をご覧くださいhttps ://medium.com/secoya-tech/a917b80c43f9

ここでjsFiddle最終結果のは。割合はdata-progress属性を介して設定されます。変更はCSSトランジションを使用してアニメーション化されます。

ラジアルプログレスインジケーターのgif


3
あなたがCSSでこれを行うことができるとは思いませんでした。いいね。
ホッブズ

4
しかし、大きなパフォーマンスヒット..私のアプリでは使用できなくなります= [
Hobbes

2
素晴らしいもの。Firefoxのマイナーな問題(Developer Edition 41.0a2を使用)は、変換中に目に見える鋭いエッジを作成します。進行状況を90に設定し、移行時間を10秒に設定すると、簡単に確認できます。修正するにはoutline: 1px solid transparent;.mask, .fill, .shadowグループに追加するだけです。
luopio 2015

5
@ホッブズ、できません、ポスターが嘘をついています。この回答は、LESSと呼ばれるライブラリを介して大量のJavascriptを使用しています。
GetFree

6
誰かが試してみたい場合に備えて、Sassバージョンを作成しました:gist.github.com/digitalbreed/84a19db69244b22519e03550ba010a25
digitalbreed

78

CSSのみを使用してフィドルを作成しました。

.wrapper {
  width: 100px; /* Set the size of the progress bar */
  height: 100px;
  position: absolute; /* Enable clipping */
  clip: rect(0px, 100px, 100px, 50px); /* Hide half of the progress bar */
}
/* Set the sizes of the elements that make up the progress bar */
.circle {
  width: 80px;
  height: 80px;
  border: 10px solid green;
  border-radius: 50px;
  position: absolute;
  clip: rect(0px, 50px, 100px, 0px);
}
/* Using the data attributes for the animation selectors. */
/* Base settings for all animated elements */
div[data-anim~=base] {
  -webkit-animation-iteration-count: 1;  /* Only run once */
  -webkit-animation-fill-mode: forwards; /* Hold the last keyframe */
  -webkit-animation-timing-function:linear; /* Linear animation */
}

.wrapper[data-anim~=wrapper] {
  -webkit-animation-duration: 0.01s; /* Complete keyframes asap */
  -webkit-animation-delay: 3s; /* Wait half of the animation */
  -webkit-animation-name: close-wrapper; /* Keyframes name */
}

.circle[data-anim~=left] {
  -webkit-animation-duration: 6s; /* Full animation time */
  -webkit-animation-name: left-spin;
}

.circle[data-anim~=right] {
  -webkit-animation-duration: 3s; /* Half animation time */
  -webkit-animation-name: right-spin;
}
/* Rotate the right side of the progress bar from 0 to 180 degrees */
@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
  }
}
/* Rotate the left side of the progress bar from 0 to 360 degrees */
@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* Set the wrapper clip to auto, effectively removing the clip */
@-webkit-keyframes close-wrapper {
  to {
    clip: rect(auto, auto, auto, auto);
  }
}
<div class="wrapper" data-anim="base wrapper">
  <div class="circle" data-anim="base left"></div>
  <div class="circle" data-anim="base right"></div>
</div>

こちらのフィドルもここで確認してください (CSSのみ)

@import url(http://fonts.googleapis.com/css?family=Josefin+Sans:100,300,400);
    
.arc1 {
    width: 160px;
    height: 160px;
    background: #00a0db;
    -webkit-transform-origin: -31% 61%;
    margin-left: -30px;
    margin-top: 20px;
    -webkit-transform: translate(-54px,50px);
    -moz-transform: translate(-54px,50px);
    -o-transform: translate(-54px,50px);
}
.arc2 {
    width: 160px;
    height: 160px;
    background: #00a0db;
    -webkit-transform: skew(45deg,0deg);
    -moz-transform: skew(45deg,0deg);
    -o-transform: skew(45deg,0deg);
    margin-left: -180px;
    margin-top: -90px;
    position: absolute;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.arc-container:hover .arc2 {
    margin-left: -50px;
    -webkit-transform: skew(-20deg,0deg);
    -moz-transform: skew(-20deg,0deg);
    -o-transform: skew(-20deg,0deg);
}

.arc-wrapper {
    width: 150px;
    height: 150px;
    border-radius:150px;
    background: #424242;
    overflow:hidden;
    left: 50px;
    top: 50px;
    position: absolute;
}
.arc-hider {
    width: 150px;
    height: 150px;
    border-radius: 150px;
    border: 50px solid #e9e9e9;
    position:absolute;
    z-index:5;
    box-shadow:inset 0px 0px 20px rgba(0,0,0,0.7);
}

.arc-inset  {
    font-family: "Josefin Sans";
    font-weight: 100;
    position: absolute;
    font-size: 413px;
    margin-top: -64px;
    z-index: 5;
    left: 30px;
    line-height: 327px;
    height: 280px;
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,0.2));
}
.arc-lowerInset {
    font-family: "Josefin Sans";
    font-weight: 100;
    position: absolute;
    font-size: 413px;
    margin-top: -64px;
    z-index: 5;
    left: 30px;
    line-height: 327px;
    height: 280px;
    color: white;
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,0.2), rgba(0,0,0,1));
}
.arc-overlay {
    width: 100px;
    height: 100px;
    background-image: linear-gradient(bottom, rgb(217,217,217) 10%, rgb(245,245,245) 90%, rgb(253,253,253) 100%);
    background-image: -o-linear-gradient(bottom, rgb(217,217,217) 10%, rgb(245,245,245) 90%, rgb(253,253,253) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(217,217,217) 10%, rgb(245,245,245) 90%, rgb(253,253,253) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(217,217,217) 10%, rgb(245,245,245) 90%, rgb(253,253,253) 100%);

    padding-left: 32px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    line-height: 100px;
    font-family: sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 0 #fff;
    font-size: 22px;
    border-radius: 100px;
    position: absolute;
    z-index: 5;
    top: 75px;
    left: 75px;
    box-shadow:0px 0px 20px rgba(0,0,0,0.7);
}
.arc-container {
    position: relative;
    background: #e9e9e9;
    height: 250px;
    width: 250px;
}
<div class="arc-container">
    <div class="arc-hider"></div>
    <div class="arc-inset">
        o
    </div>
    <div class="arc-lowerInset">
        o
    </div>
    <div class="arc-overlay">
        35%
    </div>
    <div class="arc-wrapper">
        <div class="arc2"></div>
        <div class="arc1"></div>
    </div>
</div>

または、HTML5、CSS3、JavaScriptを備えたこの美しいラウンドプログレスバー



@panos私は最初の解決策を試しました。.circleの境界線を10pxではなく6pxにする必要があります。同じことを達成しましたが、50%に達しました。ジャークを与え、再びアニメーションを開始します。試してみましょう
Santhosh Kumar

@ Santosh-kumar、他の値も変更する必要があります
Panos Kal。

@panos最初のソリューションの進行状況をどのように変更しますか?データ要素でそれを行うことができますか?私はアニメーションにかなり
慣れていません

1
MDNに よるclipと、現在は非推奨です。
jstaab

36

そのことについて何?

HTML

<div class="chart" id="graph" data-percent="88"></div>

JavaScript

var el = document.getElementById('graph'); // get canvas

var options = {
    percent:  el.getAttribute('data-percent') || 25,
    size: el.getAttribute('data-size') || 220,
    lineWidth: el.getAttribute('data-line') || 15,
    rotate: el.getAttribute('data-rotate') || 0
}

var canvas = document.createElement('canvas');
var span = document.createElement('span');
span.textContent = options.percent + '%';

if (typeof(G_vmlCanvasManager) !== 'undefined') {
    G_vmlCanvasManager.initElement(canvas);
}

var ctx = canvas.getContext('2d');
canvas.width = canvas.height = options.size;

el.appendChild(span);
el.appendChild(canvas);

ctx.translate(options.size / 2, options.size / 2); // change center
ctx.rotate((-1 / 2 + options.rotate / 180) * Math.PI); // rotate -90 deg

//imd = ctx.getImageData(0, 0, 240, 240);
var radius = (options.size - options.lineWidth) / 2;

var drawCircle = function(color, lineWidth, percent) {
        percent = Math.min(Math.max(0, percent || 1), 1);
        ctx.beginPath();
        ctx.arc(0, 0, radius, 0, Math.PI * 2 * percent, false);
        ctx.strokeStyle = color;
        ctx.lineCap = 'round'; // butt, round or square
        ctx.lineWidth = lineWidth
        ctx.stroke();
};

drawCircle('#efefef', options.lineWidth, 100 / 100);
drawCircle('#555555', options.lineWidth, options.percent / 100);

およびCSS

div {
    position:relative;
    margin:80px;
    width:220px; height:220px;
}
canvas {
    display: block;
    position:absolute;
    top:0;
    left:0;
}
span {
    color:#555;
    display:block;
    line-height:220px;
    text-align:center;
    width:220px;
    font-family:sans-serif;
    font-size:40px;
    font-weight:100;
    margin-left:5px;
}

http://jsfiddle.net/Aapn8/3410/

基本的なコードは、シンプルなPIEチャートhttp://rendro.github.io/easy-pie-chart/から取得されました


これは私にとって最良の解決策でした(jqueryもありません!)。
アンディB

2
僕にも。これをアニメーション化する方法は次のとおりです。drawCircle( '#efefef'、options.lineWidth、100/100); var i = 0; var int = setInterval(function(){i ++; drawCircle( '#555555'、options.lineWidth、i / 100); span.textContent = i + "%"; if(i> = 100){clearInterval(int);} }、100);
2015年

1
グラデーションカラーを円に設定する方法は?
yaniv14 2015年

jsFiddleはChromeでバーを表示しません。
エサモ2018

10

別の純粋なcssベースのソリューションで、2つのクリップされた丸い要素に基づいており、正しい角度になるように回転します。

http://jsfiddle.net/maayan/byT76/

それはそれを可能にする基本的なCSSです:

.clip1 {
    position:absolute;
    top:0;left:0;
    width:200px;
    height:200px;
    clip:rect(0px,200px,200px,100px);
}
.slice1 {
    position:absolute;
    width:200px;
    height:200px;
    clip:rect(0px,100px,200px,0px);
    -moz-border-radius:100px;
    -webkit-border-radius:100px; 
    border-radius:100px;
    background-color:#f7e5e1;
    border-color:#f7e5e1;
    -moz-transform:rotate(0);
    -webkit-transform:rotate(0);
    -o-transform:rotate(0);
    transform:rotate(0);
}

.clip2 
{
    position:absolute;
    top:0;left:0;
    width:200px;
    height:200px;
    clip:rect(0,100px,200px,0px);
}

.slice2
{
    position:absolute;
    width:200px;
    height:200px;
    clip:rect(0px,200px,200px,100px);
    -moz-border-radius:100px;
    -webkit-border-radius:100px; 
    border-radius:100px;
    background-color:#f7e5e1;
    border-color:#f7e5e1;
    -moz-transform:rotate(0);
    -webkit-transform:rotate(0);
    -o-transform:rotate(0);
    transform:rotate(0);
}

そしてjsは必要に応じてそれを回転させます。

非常に理解しやすい。

それが役に立てば幸い、Maayan


1
jQueryの内部では、すべてを-vendor-prefixes内部に設定する必要はありません.css()♪使用のみtransform: 'rotate(' + degree + 'deg)'
ロコC.ブルヤン

1
これはより簡単でクリーンです。@ Maayanの例から始めて、これを取得しました。jsfiddle.net
lukart
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.