css实现5种图片滤镜效果代码
代码语言:html
所属分类:其他
代码描述:css实现5种图片滤镜效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css?family=Lato:700");
* {
margin: 0;
box-sizing: border-box;
}
body {
background: #2f2f31;
height: 100vh;
overflow: hidden;
color: #f5f5f5;
line-height: 1.34;
}
.container {
width: 100%;
height: 100%;
}
.container img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
obje.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0