- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - 样式图像
在本教程中,我们将学习如何使用不同的 CSS 属性(如填充、边框、高度、宽度、边距等)来设置图像样式以更改其形状、大小和布局。
CSS 样式图像 - 圆形图像
以下示例演示了如何使用 border-radius: 20px 属性创建圆角边框图像 -
<html>
<head>
<style>
img {
width: 100px;
height: 100px;
border-radius: 20px;
}
</style>
</head>
<body>
<img src="images/pink-flower.jpg" alt="pink-flower">
</body>
</html>
CSS 样式图像 - 圆形图像
以下示例演示了如何使用 border-radius: 50% 属性创建圆形图像 -
<html>
<head>
<style>
img {
width: 100px;
height: 100px;
border-radius: 50%;
}
</style>
</head>
<body>
<img src="images/pink-flower.jpg" alt="pink-flower">
</body>
</html>
CSS 样式图像 - 缩略图图像
以下示例演示了如何使用 border 属性创建缩略图图像 -
<html>
<head>
<style>
img {
border: 2px solid red;
border-radius: 10px;
padding: 5px;
width: 150px;
}
</style>
</head>
<body>
<img src="images/pink-flower.jpg" alt="pink-flower" >
</body>
</html>
CSS 样式图像 - 缩略图作为链接
以下示例演示如何将缩略图创建为链接。要创建链接,请将锚标签包裹在图像标签周围 -
<html>
<head>
<style>
img {
border: 2px solid red;
border-radius: 10px;
padding: 5px;
width: 150px;
}
img:hover {
border: 2px solid blue;
box-shadow: 0 0 5px 2px rgba(82, 241, 108, 0.5);
}
</style>
</head>
<body>
<a target="_blank" href="images/red-flower.jpg">
<img src="images/pink-flower.jpg" alt="pink-flower">
</a>
</body>
</html>
CSS 样式图像 - 响应式图像
以下示例演示了图像如何自动调整大小以匹配屏幕尺寸 -
<html>
<head>
<style>
img {
max-width: 100%;
width: 500px;
height: 300px;
}
</style>
</head>
<body>
<p>Resize the browser window to see the effect.</p>
<img src="images/pink-flower.jpg" alt="Pink Flower" >
</body>
</html>
CSS 样式图像 - 将图像居中
以下示例演示了当屏幕大小更改时,图像将如何调整大小以匹配屏幕大小 -
<html>
<head>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
height: 200px;
}
</style>
</head>
<body>
<img src="images/pink-flower.jpg" alt="Pink Flower">
</body>
</html>
CSS 样式图像 - 宝丽来图像/卡片
以下示例演示了具有阴影效果的响应式宝丽来样式图像 -
<html>
<head>
<style>
.polaroid-image {
width: 60%;
height: 200px;
background-color: white;
box-shadow: 0 3px 6px 0 grey, 0 8px 16px 0 black;
margin-bottom: 25px;
margin: 20px;
}
img {
width: 100%;
height: 150px;
}
.box {
text-align: center;
padding: 5px;
}
</style>
</head>
<body>
<div class="polaroid-image">
<img src="images/red-flower.jpg" alt="Flower">
<div class="box">
<p>Tree</p>
</div>
</div>
</body>
</html>
CSS 样式图像 - 透明图像
下面的示例演示如何使用 opacity 属性创建透明图像。opacity 属性可以设置为介于 0 和 1 之间的值。
“img1”的不透明度设置为 0.4,使其更透明,而“img2”的不透明度设置为 0.8,使其透明度较低。
<html>
<head>
<style>
.img1 {
opacity: 0.4;
width: 170px;
height: 100px;
}
.img2 {
opacity: 0.8;
width: 170px;
height: 100px;
}
</style>
</head>
<body>
<img class="img1" src="images/tree.jpg" alt="Tree">
<img class="img2" src="images/tree.jpg" alt="Tree">
</body>
</html>
CSS 样式图像 - 将文本居中
以下示例演示了可以使用 Filter 属性应用于图像的不同滤镜效果 -
<html>
<head>
<style>
.box {
display: flex;
align-items: center;
justify-content: center;
}
.center-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-40%, -40%);
font-size: 30px;
font-weight: bold;
color: blue;
}
img {
width: 100%;
height: auto;
opacity: 0.4;
height: 250px;
}
</style>
</head>
<body>
<div class="box">
<img src="images/tree.jpg" alt="Tree">
<div class="center-text">Tree Image</div>
</div>
</body>
</html>
CSS 样式图像 - 过滤器
以下示例演示了使用filter属性对图像应用不同的滤镜效果 -
<html>
<head>
<style>
img {
width: 300px;
height: 300px;
height: auto;
float: left;
max-width: 235px;
}
.blur-img {
filter: blur(3px);
}
.brightness-img {
filter: brightness(220%);
}
.grayscale-img {
filter: grayscale(110%);
}
.huerotate-img {
filter: hue-rotate(120deg);
}
.invert-img {
filter: invert(110%);
}
.shadow-img {
filter: drop-shadow(6px 6px 8px red);
}
.saturate-img {
filter: saturate(8);
}
.sepia-img {
filter: sepia(110%);
}
</style>
</head>
<body>
<img class="blur-img" src="images/pink-flower.jpg" alt="Flower">
<img class="brightness-img" src="images/pink-flower.jpg" alt="Flower">
<img class="grayscale-img" src="images/pink-flower.jpg" alt="Flower">
<img class="huerotate-img" src="images/pink-flower.jpg" alt="Flower">
<img class="invert-img" src="images/pink-flower.jpg" alt="Flower">
<img class="shadow-img" src="images/pink-flower.jpg" alt="Flower">
<img class="saturate-img" src="images/pink-flower.jpg" alt="Flower">
<img class="sepia-img" src="images/pink-flower.jpg" alt="Flower">
</body>
</html>
CSS 样式图像 - 淡入叠加
以下示例演示了当您将鼠标悬停在图像上时,具有淡入淡出覆盖效果的图像会显示文本 -
<html>
<head>
<style>
.img-container {
position: relative;
width: 250px;
}
.img-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
opacity: 0;
transition: opacity 0.4s ease;
}
.overlay-text {
color: red;
font-weight: bold;
font-size: 25px;
position: absolute;
top: 40%;
left: 20%;
}
.img-container:hover .img-overlay {
opacity: 1;
}
img {
width: 100%;
height: auto;
display: block;
}
</style>
</head>
<body>
<div class="img-container">
<div class="img-overlay">
<div class="overlay-text">Tutorialspoint</div>
</div>
<img src="images/see.jpg" alt="See Image">
</div>
</body>
</html>
CSS 样式图像 - 滑入效果
以下示例演示了当您将鼠标悬停在图像上时,图像顶部的滑入叠加效果会显示文本 -
<html>
<head>
<style>
.img-container {
position: relative;
width: 250px;
overflow: hidden;
}
.img-overlay {
position: absolute;
bottom: 100%;
left: 0;
background-color: violet;
overflow: hidden;
width: 100%;
text-align: center;
height: 100%;
transition: 0.4s ease;
}
.img-container:hover .img-overlay {
bottom: 0;
height: 100%;
}
img {
width: 100%;
height: auto;
display: block;
}
</style>
</head>
<body>
<div class="img-container">
<div class="img-overlay">
<p>CSS Image Slide In Effect</p>
</div>
<img src="images/pink-flower.jpg" alt="Flower Image">
</div>
</body>
</html>
CSS 样式图像 - 翻转图像
当您将鼠标悬停在图像上时,您可以使用转换来翻转图像:scaleX(-1) 属性 -
<html>
<head>
<style>
img {
width: 200px;
height: 200px;
}
img:hover {
transform: scaleX(-1);
}
</style>
</head>
<body>
<img src="images/see.jpg" alt="See">
</body>
</html>
CSS 样式图像 - 响应式图像库
以下示例演示了如何创建一个响应式图像库,该图像库将根据浏览器窗口的大小调整图像大小 -
<html>
<head>
<style>
.gallery {
margin: 10px;
overflow: hidden;
}
.gallery img {
width: 20%;
height: auto;
float: left;
margin: 5px;
border: 2px solid black;
transition: transform 0.4s ease;
}
@media screen and (max-width: 700px) {
.gallery img {
width: 48%;
}
}
@media screen and (max-width: 1000px) {
.gallery img {
width: 30%;
}
}
</style>
</head>
<body>
<h3>Resize the browser window to see the effect.</h3>
<div class="gallery">
<img src="images/tree.jpg" alt="Tree">
<img src="images/orange-flower.jpg" alt="Orange">
<img src="images/see.jpg" alt="See">
<img src="images/red-flower.jpg" alt="Pink">
</div>
</body>
</html>
CSS 样式图像 - 图像模态
以下示例演示如何使用图像创建简单的模态,其中模态使用属性 display: none 隐藏。当单击图像时,模态窗口会打开,显示相同的图像 -
<html>
<head>
<style>
.main-img {
width: 500px;
height: 250px;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: yellow;
}
.modal-img {
display: block;
margin: auto;
width: 80%;
height: 80%;
}
.close {
position: absolute;
top: 10px;
right: 10px;
margin: 5px;
color: red;
font-size: 25px;
cursor: pointer;
}
</style>
</head>
<body>
<img src="images/red-flower.jpg" class="main-img" alt="red flower" onclick="openModal()">
<div id="imgModal" class="modal" onclick="closeModal()">
<span class="close">×</span>
<img class="modal-img" src="images/red-flower.jpg" alt="Modal Image">
</div>
<script>
function openModal() {
document.getElementById("imgModal").style.display = "block";
}
function closeModal() {
document.getElementById("imgModal").style.display = "none";
}
</script>
</body>
</html>