Skip to content

Instantly share code, notes, and snippets.

@VicVicos
Last active March 12, 2019 15:05
Show Gist options
  • Select an option

  • Save VicVicos/1b88a12c9630146f988f780c01df30f2 to your computer and use it in GitHub Desktop.

Select an option

Save VicVicos/1b88a12c9630146f988f780c01df30f2 to your computer and use it in GitHub Desktop.
Spoler
<div>
<a href="#" class="spoiler-trigger active"><span>Спойлер 1</span></a>
<div class="spoiler-block" style="display:block;">Открытый контент первого спойлера</div>
</div>
$(document).on('click', '.spoiler-trigger', function (e) {
e.preventDefault();
$(this).toggleClass('active');
$(this).parent().find('.spoiler-block').first().slideToggle(300);
});
.spoiler-trigger{
color: #0b70db;
text-decoration: none;
padding-left: 15px;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAANUlEQVQoU2PkLrj9n4EAYAQp+jpBlRGXOpA8hiJ0TaQrwuY2kDNINwnmcKLchO5LuHWEwgkAlO5FBwhFaI8AAAAASUVORK5CYII=) no-repeat 0 50%;
}
.spoiler-trigger.active{
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKklEQVQoU2PkLrj9n4EAYAQp+jpBlRGXOpA8DRRhcxvIGTSyjqDvCIUTAEcINQcERZkIAAAAAElFTkSuQmCC);
}
.spoiler-trigger>span{
border-bottom: 1px dashed #0b70db;
padding:0 3px;
}
.spoiler-trigger:hover>span{
border-bottom-style: solid;
}
.spoiler-block{
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment