美文网首页
SwiftUI—如何给图像视图添加边框、透明度和阴影

SwiftUI—如何给图像视图添加边框、透明度和阴影

作者: anny_4243 | 来源:发表于2020-07-10 17:52 被阅读0次

原文链接:https://github.com/fzhlee/SwiftUI-Guide#15Image-Style

设置图像的边框、不透明度、阴影等属性。
示例代码:

ScrollView{
     VStack{

    Image("girlPicture")
        .border(Color.orange) //图片边框颜色

    Image("girlPicture")
        .border(Color.orange, width: 10) //图片边框粗细

    Image("girlPicture")
        .opacity(0.5) //图像透明度

    Image("girlPicture")
        .shadow(radius: 10) //给图像添加半径为10的阴影

    Image("girlPicture")
        .shadow(color: .purple, radius: 20, x: 20, y: 20) //设置图像阴影的颜色为紫色,半径为20,向右偏移20,向下偏移20
    }
}

相关文章

网友评论

      本文标题:SwiftUI—如何给图像视图添加边框、透明度和阴影

      本文链接:https://www.haomeiwen.com/subject/qugmcktx.html