css实现球体

原文: https://blog.csdn.net/qq_39897978/article/details/90172695

css代码

        .sphere{            
		        width: 100px;            
		        height: 100px;            
		        border-radius: 50%;            
		        /*颜色渐变效果*/
		        background: radial-gradient(circle at 70px 70px,#5cabff,#000000);     
		}

效果

https://img-blog.csdnimg.cn/20190513125228874.png

你可能感兴趣的:(前端,css,前端,经验分享,程序人生)