Главная » Изображения » Рамки CSS для изображений на Blogger
Рамки CSS для изображений на Blogger
Рамки для картинок
1. Рамка с уголками
Код:
<div class="image-wrapper">Красным в коде отметила цвет уголков
<div class="image-inner">
<img alt="кошка" src="картинка" title="кошка" /></div>
</div>
<style>
* {box-sizing: border-box;}
.image-wrapper {
position: relative;
max-width: 400px;
margin: 50px auto;
padding: 15px;
background: #dfdcdc;
}
.image-inner {position: relative;}
.image-wrapper img {
display: block;
width: 100%;
}
.image-wrapper:before,
.image-wrapper:after,
.image-inner:before,
.image-inner:after {
content: "";
position: absolute;
width: 50px;
height: 50px;
}
.image-wrapper:before {
bottom: 0;
left: 0;
border-left: 6px double #004524;
border-bottom: 6px double #004524;
}
.image-wrapper:after {
right: 0;
top: 0;
border-right: 6px double #004524;
border-top: 6px double #004524;
}
.image-inner:before {
bottom: -15px;
right: -15px;
border-right: 6px double #004524;
border-bottom: 6px double #004524;
}
.image-inner:after {
top: -15px;
left: -15px;
border-left: 6px double #004524;
border-top: 6px double #004524;
}</style>
Синим — цвет рамки
2. Паспарту
Код:<div class="frame7">Красным в коде выделила размеры фотографии
<img alt="цветы" height="448" src="картинка" title="цветы" width="640" /></div>
<style>
{
background-image:linear-gradient(#eee, #aaa);
height:100%;
}
img {
border:solid 2px;
border-bottom-color:#ffe;
border-left-color:#eed;
border-right-color:#eed;
border-top-color:#ccb;
max-height:100%;
max-width:100%;
}
.frame7 {
background-color:#ddc;
border:solid 5vmin #eee;
border-bottom-color:#fff;
border-left-color:#eee;
border-radius:2px;
border-right-color:#eee;
border-top-color:#ddd;
box-shadow:0 0 5px 0 rgba(0,0,0,.25) inset, 0 5px 10px 5px rgba(0,0,0,.25);
box-sizing:border-box;
display:inline-block;
margin:10vh 10vw;
height:80vh;
padding:8vmin;
position:relative;
text-align:center;
&:before {
border-radius:2px;
bottom:-2vmin;
box-shadow:0 2px 5px 0 rgba(0,0,0,.25) inset;
content:"";
left:-2vmin;
position:absolute;
right:-2vmin;
top:-2vmin;
}
&:after {
border-radius:2px;
bottom:-2.5vmin;
box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
content:"";
left:-2.5vmin;
position:absolute;
right:-2.5vmin;
top:-2.5vmin;
}
}
</style>
3. Паспарту с фиолетовой рамкой
Код:<div id="frame">
<div id="border">
<img alt="цветы" height="439" src="картинка" width="640" /></div>
<!-- #border -->
<!-- #frame --></div>
<style>
#frame{
position:relative;
padding:0;
margin:0;
border:solid 15px #85a;
max-width:600px;
margin:40px auto;
box-shadow:-3px -3px 12px #999;
}
#border{
position:relative;
padding:0;
margin:0;
border:solid 70px white;
box-shadow:-3px -3px 12px #999;
}
img{
display:block;
padding:0;
margin:0;
width:100%;
height:auto;
border-top:solid 2px #aaa;
border-left:solid 2px #aaa;
border-bottom:solid 2px #ccc;
border-right:solid 2px #ccc;
}
</style>
4. Рама в золоте
Код:<img alt="фрукты" class="frame" src="картинка" />Синим выделила ссылку на рамку, можно установить свою. Скачиваем любую рамку с прозрачным фоном, отправляем на фото хостинг, ссылку вставляем в код.
<style>
img.frame {
border-image: url('//s3-us-west-2.amazonaws.com/s.cdpn.io/4273/frame.png') 93 92 87 92 stretch stretch;
border-color: #f4be52;
border-width: 60px;
border-style: inset;
display: block;
width: 70%;
height: auto;
background-color: #ffe;
margin: 0 auto;
}
@media all and (max-width: 500px) {
img.frame {
border-width: 0px;
width: 100%; }
}
</style>
Пример с другими рамками:
5. Рамка с текстом
Код:<div class="outer-thumb">Синим выделила ссылку на картинку для рамки. Это может быть текстура, фоны, любая другая подходящая для рамки картинка.
<div class="inner-thumb">
<img alt="кошка" src="картинка" />
<div class="gradient">
</div>
<div class="content">
<h6>
текст</h6>
<h2>
текст</h2>
текст</div>
</div>
</div>
<style>, *:before, *:after {
box-sizing: border-box;
}
.outer-thumb {
height: 400px;
min-width: 400px;
width: 60vw;
max-width: 800px;
padding: 30px;
background: url(https://i.yapx.ru/E9oIF.jpg) center;
background-size: cover;
}
.inner-thumb {
display: flex;
position: relative;
width: 100%;
height: 100%;
object-fit: cover;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
overflow: hidden;
}
.inner-thumb img, .inner-thumb .gradient, .inner-thumb .content {
position: absolute;
width: 100%;
height: 100%;
}
.inner-thumb img {
object-fit: cover;
transition: transform 0.6s;
}
.inner-thumb .gradient {
background-image: linear-gradient(116deg,rgba(10,170,255,.75),rgba(94,195,235,.4));}
.inner-thumb .gradient.coral {
background-image: linear-gradient(116deg,#FD7884,#F8ED61);
}
.inner-thumb .content {
display: grid;
align-content: center;
max-width: 500px;
padding: 50px 30px;
color: #ffffff;
font-family: 'Ubuntu', sans-serif;
}
.inner-thumb .content h6, .inner-thumb .content p {
font-weight: 400;
font-size: 12px;
margin: 0;
}
.inner-thumb .content h6 {
text-transform: uppercase;
}
.inner-thumb .content h2 {
font-weight: 500;
}
.outer-thumb:hover img {
transform: scale(1.2);
}
</style>
У вас фотография будет с наложением синего оттенка, у меня в примере разноцветный. Можно поменять на другой.
Выделенный зелёным отрезок кода меняем на:
linear-gradient(45deg, rgba(103, 0, 31, .8), rgba(34, 101, 163, .5)); - красный оттенок
linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(237,253,29,0.5459321120689655) 50%, rgba(252,176,69,1) 100%); - разноцветный.
6. Рамка с ховер эффектом
Код:<div class="border-image">Синим выделила ссылку на картинку оформления рамки. Картинки можно брать для рамки любые — фоны, текстуры и так далее. Рамка похожа на предыдущую, но без эффекта наложения оттенка. Фотография в рамке будет увеличиваться, при наведении курсора.
<div class="image-thumbnail">
<img alt="котята" src="картинка" /></div>
</div>
<style>
*, *:before, *:after {
box-sizing: border-box;
}
{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.border-image {
height: 400px;
width: 60vw;
max-width: 800px;
padding: 30px;
background: url(https://i.yapx.ru/E9r6M.jpg) center;
background-size: cover;
}
.image-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
overflow: hidden;
}
.image-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
}
.border-image:hover img {
transform: scale(1.2);
}</style>
7. Рамка простая
Рамочка сама по себе простая, но то, что она висит криво, придаёт ей пикантность.Код:
<img alt="море" id="polaroid" src="картинка" />
<style>
img#polaroid {
width: 45%;
height: auto;
transform: rotate(4deg);
display: block;
margin: 2rem auto;
border-width: 20px 20px 50px;
border-style: solid;
border-color: #b4825a; /* цвет рамки */
border-image: none;
box-shadow: 12px 12px 8px 4px rgba(0, 0, 0, 0.3);</style>
Генераторы рамок и границ
http://www.generatecss.com/css/border/https://html-css-js.com/css/generator/border-outline/
https://cssgenerator.org/border-css-generator.html
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Background_and_Borders/Border-image_generator
https://pinetools.com/blurred-frame-images-generator - а этот генератор размывает края на изображениях (не CSS) Пример ниже:
Рамки на работоспособность можно проверить в редакторе.
Комментарии со спамом удаляются.