Border radius for the image
See original GitHub issueHi,
How can I set border-radius for the image in ng-circle-progress. .html page
<circle-progress
[percent]="80"
[radius]="30"
[outerStrokeWidth]="8"
[innerStrokeWidth]="0"
[outerStrokeColor]="'#FF0000'"
[innerStrokeColor]="'#800000'"
[animation]="true"
[animationDuration]="400"
[imageSrc]="'/assets/images/music.png'"
[showImage]="true"
[imageHeight]="60"
[imageWidth]="60"
></circle-progress>
I want the image src in html itself. Could you please help me in this.
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (4 by maintainers)
Top Results From Across the Web
How To Create Rounded Images - W3Schools
Learn how to create rounded and circular images with CSS. ... Use the border-radius property to add rounded corners to an image. 50%...
Read more >Rounded Corners on Images | IANR Media | Nebraska
The CSS property border-radius adds rounded corners on images. Radius values are listed starting with the top left corner and going clockwise around...
Read more >border-radius - CSS: Cascading Style Sheets - MDN Web Docs
The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, ......
Read more >Rounded corners on rectangular image using CSS only
Using CSS border-radius (rounded corners), how can we prevent the rounded corners from disappearing if the image is scaled down (max width/ ...
Read more >border-radius - CSS-Tricks
The border-radius property takes between one and four length or percentage values, where one value sets the radius for all four corners at...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
‘border-radius’ does not apply to svg:image element.
We can use ‘clip-path’ like this:
Hi @Eraldo
I have replied it in Rounded image #94. Could you please look into it and check whether it works or not.