fix(Circle): the gradient color is incorrect (#7909)

This commit is contained in:
John 2021-01-15 15:15:17 +08:00 committed by GitHub
parent 959cfff423
commit ac1bb94343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -96,8 +96,10 @@ export default createComponent({
const renderHover = () => {
const PERIMETER = 3140;
const { color, strokeWidth, currentRate, strokeLinecap } = props;
const { strokeWidth, currentRate, strokeLinecap } = props;
let { color } = props;
const offset = (PERIMETER * currentRate) / 100;
color = isObject(color) ? `url(#${id})` : color;
const style = {
stroke: `${color}`,
strokeWidth: `${+strokeWidth + 1}px`,
@ -110,7 +112,7 @@ export default createComponent({
d={path.value}
style={style}
class={bem('hover')}
stroke={isObject(color) ? `url(#${id})` : color}
stroke={color}
/>
);
};

View File

@ -81,7 +81,7 @@ exports[`should render demo and match snapshot 1`] = `
>
</path>
<path d="M 520 520 m 0, -500 a 500, 500 0 1, 1 0, 1000 a 500, 500 0 1, 1 0, -1000"
style="stroke: [object Object]; stroke-width: 41px; stroke-dasharray: 2198px 3140px;"
style="stroke: url(#van-circle-3); stroke-width: 41px; stroke-dasharray: 2198px 3140px;"
class="van-circle__hover"
stroke="url(#van-circle-3)"
>