Благодарим за выбор нашего сервиса!
Тестовое сообщение
Сообщений 1 страница 5 из 5
Поделиться22022-07-21 02:36:41
.info-tabbl1 {
width: 290px;
height: 10px;
position: absolute;
top: 436px;
left: -118px;
cursor: default;
font-family: 'Roboto Black';
text-transform: lowercase;
text-align: right;
font-size: 14px;
color: #da9daf;
transform: rotate(270deg);
}
.info-tabbl4 {
width: 290px;
height: 10px;
position: absolute;
top: 332px;
left: 825px;
cursor: default;
font-family: Roboto Black;
text-transform: lowercase;
text-align: right;
font-size: 14px;
color: #da9daf;
transform: rotate(90deg);
}
Поделиться32022-07-28 02:38:12
Тестовое соо от гостя
Поделиться42022-08-17 15:39:10
аааааааааааа
Поделиться52022-09-12 17:17:17
<!--HTML-->
<style>@import url('https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One');
.timeline {
display: flex;
margin: 0 auto;
flex-wrap: wrap;
flex-direction: column;
max-width: 600px;
position: relative;
}
.timeline__content-title {
font-weight: normal;
font-size: 66px;
margin: -10px 0 0 0;
transition: 0.4s;
padding: 0 10px;
box-sizing: border-box;
font-family: 'Pathway Gothic One', sans-serif;
color: #fff;
position: relative;
}
.timeline__content-desc {
margin: 0;
font-size: 15px;
box-sizing: border-box;
color: rgba(255, 255, 255, .7);
font-family: Cardo;
font-weight: normal;
line-height: 25px;
position: relative;
}
.timeline:before {
position: absolute;
left: 50%;
width: 2px;
height: 100%;
margin-left: -1px;
content: "";
background: rgba(255, 255, 255, .07);
}
.timeline-item {
padding: 40px 0;
opacity: 0.3;
filter: blur(2px);
transition: 0.5s;
box-sizing: border-box;
width: calc(50% - 40px);
display: flex;
position: relative;
transform: translateY(-80px);
}
.timeline-item:before {
content: attr(data-text);
letter-spacing: 3px;
width: 100%;
position: absolute;
color: rgba(255, 255, 255, .5);
font-size: 13px;
font-family: 'Pathway Gothic One', sans-serif;
border-left: 2px solid rgba(255, 255, 255, .5);
top: 70%;
margin-top: -5px;
padding-left: 15px;
opacity: 0;
right: calc(-100% - 56px);
}
.timeline-item:nth-child(even) {
align-self: flex-end;
}
.timeline-item:nth-child(even):before {
right: auto;
text-align: right;
left: calc(-100% - 56px);
padding-left: 0;
border-left: none;
border-right: 2px solid rgba(255, 255, 255, .5);
padding-right: 15px;
}
.timeline-item--active {
opacity: 1;
transform: translateY(0);
filter: blur(0px);
}
.timeline-item--active:before {
top: 50%;
transition: 0.3s all 0.2s;
opacity: 1;
}
.timeline-item--active .timeline__content-title {
margin: -50px 0 20px 0;
}
.timeline__img {
max-width: 100%;
box-shadow: 0 10px 15px rgba(0, 0, 0, .4);
}
.timeline-container {
width: 100%;
position: relative;
padding: 80px 0;
transition: 0.3s ease 0s;
background-attachment: fixed;
background-size: cover;
}
.timeline-container:before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(99, 99, 99, 0.8);
content: "";
}
.timeline-header {
width: 100%;
text-align: center;
margin-bottom: 80px;
position: relative;
}
.timeline-header__title {
color: #fff;
font-size: 46px;
font-family: Cardo;
font-weight: normal;
margin: 0;
}
.timeline-header__subtitle {
color: rgba(255, 255, 255, .5);
font-family: 'Pathway Gothic One', sans-serif;
font-size: 16px;
letter-spacing: 5px;
margin: 10px 0 0 0;
font-weight: normal;
}
</style>
<div class="timeline-container" id="timeline-1">
<div class="timeline-header">
<p class="timeline-header__title">CHRONOLOGY</p>
<h3 class="timeline-header__subtitle">Beatrice DiMaggio</h3>
</div>
<div class="timeline">
<a href ="https://tmsqr.ru/viewtopic.php?id=3522#p326141" class="timeline-item" data-text="no one fucking gets it">
<div class="timeline__content"><img class="timeline__img" src="https://i.imgur.com/typEUz7.png"/>
<p class="timeline__content-title">2012</p>
<p class="timeline__content-desc"><i>«...Дэнни у неё первый.</i><br>
У Дэнни большой член. И ей больно.<br>
Она всхлипывает, но всхлип этот теряется в завывании ветра за окном и звуках бьющихся о стену ставней. Ей больно, но с каждым толчком боль будто отступает, растворяясь во влажных шлепках плоти друг о друга. Вместо боли просачивается тепло. Безграничное тепло, расползающееся от низа живота, куда-то по ногам и позвоночнику...»</p>
</div>
</a>
<a class="timeline-item" data-text="EPISODE">
<div class="timeline__content"><img class="timeline__img" src="https://i.imgur.com/RgVGdPL.png"/>
<p class="timeline__content-title">year</p>
<p class="timeline__content-desc">description</p>
</div>
</a>
</div>
</div>
<script>(function($) {
$.fn.timeline = function() {
var selectors = {
id: $(this),
item: $(this).find(".timeline-item"),
activeClass: "timeline-item--active",
img: ".timeline__img"
};
selectors.item.eq(0).addClass(selectors.activeClass);
selectors.id.css(
"background-image",
"url(" +
selectors.item
.first()
.find(selectors.img)
.attr("src") +
")"
);
var itemLength = selectors.item.length;
$(window).scroll(function() {
var max, min;
var pos = $(this).scrollTop();
selectors.item.each(function(i) {
min = $(this).offset().top;
max = $(this).height() + $(this).offset().top;
var that = $(this);
if (i == itemLength - 2 && pos > min + $(this).height() / 2) {
selectors.item.removeClass(selectors.activeClass);
selectors.id.css(
"background-image",
"url(" +
selectors.item
.last()
.find(selectors.img)
.attr("src") +
")"
);
selectors.item.last().addClass(selectors.activeClass);
} else if (pos <= max - 40 && pos >= min) {
selectors.id.css(
"background-image",
"url(" +
$(this)
.find(selectors.img)
.attr("src") +
")"
);
selectors.item.removeClass(selectors.activeClass);
$(this).addClass(selectors.activeClass);
}
});
});
};
})(jQuery);
$("#timeline-1").timeline();</script>
Главный чистильщик; бдит в оргтемах, отвечает на вопросы.
Ответит на вопросы, поставит плашку, закодит кодики, оргтемит оргтемы.
Конкурсных дел мастер. Еще не участвуешь? Тогда он идёт к тебе.
Незримый домовой. Вы не видите, но он есть и делает свое темное дело.












































