小编Jun*_*yna的帖子

SVG循环起点

如何更改svg圆圈的起点,以便在0点开始逐步制作动画?默认圆圈svg从3点开始.

我当前的圈子(悬停动画):

#timeline{
	position:fixed;
	width:500px;
	height:500px;
	top:50%;
	left:50%;
	margin-top:-250px;
	margin-left:-250px;
	overflow:hidden;
	pointer-events: all;
	z-index:99999;
}

#bluecircle{
	stroke-dasharray:1510;
	stroke-dashoffset:1510;
	-webkit-transition:all 1s ease;
	transition:all 1s ease;
}


#bluecircle:hover{
	stroke-dashoffset:0;
}
Run Code Online (Sandbox Code Playgroud)
<div id="timeline">
  
  <svg x="0px" y="0px" width="500px" height="500px" viewBox="0 0 500 500">
    
    <circle id="greycircle" fill="none" stroke="#727272" stroke-width="2" stroke-miterlimit="10" cx="249.85" cy="248.065" r="239.024"/>
    
    <circle id="bluecircle" fill="none" stroke="#2C75FF" stroke-width="3" stroke-miterlimit="10" cx="249.85" cy="248.065" r="239.024"/>
Run Code Online (Sandbox Code Playgroud)

javascript css geometry svg rotation

9
推荐指数
1
解决办法
4586
查看次数

标签 统计

css ×1

geometry ×1

javascript ×1

rotation ×1

svg ×1