<div>
<strike>Зачеркнутый текст</strike> и еще один <del>Зачеркнутый текст</del>
</div>
<div>
<strike class="special">Зачеркнутый текст</strike>
</div>
<div>
<strike class="firefox">Зачеркнутый текст</strike>
</div>
.special {
position: relative;
display: inline-block;
text-decoration: none;
}
.special:after {
position: absolute;
display: block;
content: "";
top: 50%; left: 0;
width: 100%; height: 2px;
margin-top: -1px;
background: #f00;
}
.firefox {
text-decoration-color: #f00;
}
&--yt {
background: url('../img/yt-x2.png');
background-size: 50% 50%;
}
var $win = $(window),
$content = $(".js-content"),
$parallax = $content.find(".js-parallax"),
baseHeight = $content.outerHeight(),
maxScroll = baseHeight - $win.innerHeight(),
parallaxHeight = $parallax.outerHeight(),
parallaxDiff = parallaxHeight - baseHeight,
scrollTop, scrollPercent, parallaxTop;
$win.on("scroll", function () {
scrollTop = $win.scrollTop();
scrollPercent = scrollTop / maxScroll * 100;
parallaxTop = parallaxDiff / 100 * scrollPercent;
$parallax[0].style.top = -parallaxTop + "px";
});