tolik777 Posted November 11, 2016 Share Posted November 11, 2016 На одном из форумов 4.1. видел справа приатаченное окошко с ссылками на группы в соц. сетях. Т.е. при прокрутке оно остается на месте. Не подскажите плагин или код, что такое же реализовать? Quote Link to comment Share on other sites More sharing options...
WOLF Posted November 11, 2016 Share Posted November 11, 2016 18 минут назад, tolik777 сказал: На одном из форумов 4.1. видел справа приатаченное окошко с ссылками на группы в соц. сетях. Т.е. при прокрутке оно остается на месте. Не подскажите плагин или код, что такое же реализовать? http://share42.com/ru надеюсь разжовывать не надо? Quote Link to comment Share on other sites More sharing options...
kgb Posted November 11, 2016 Share Posted November 11, 2016 2 часа назад, tolik777 сказал: справа приатаченное окошко Ну ради прикола пару строчек в хром инспекторе)))) Quote Link to comment Share on other sites More sharing options...
tolik777 Posted November 12, 2016 Author Share Posted November 12, 2016 14 часов назад, WOLF сказал: http://share42.com/ru надеюсь разжовывать не надо? Не нужно, т.к. это совсем не то, что мне нужно. Мне нужны ссылки на мои группы, а не функция share Quote Link to comment Share on other sites More sharing options...
Redneck Posted November 12, 2016 Share Posted November 12, 2016 2 часа назад, tolik777 сказал: Не нужно, т.к. это совсем не то, что мне нужно. Мне нужны ссылки на мои группы, а не функция share Встречал только платный https://invisionpower.com/files/file/8246-social-contact-sidebar/ Quote Link to comment Share on other sites More sharing options...
tolik777 Posted November 12, 2016 Author Share Posted November 12, 2016 Да я видел этот плагин у купил бы, но нет VK и OK, т.к. плагин забугорный Quote Link to comment Share on other sites More sharing options...
Redneck Posted November 12, 2016 Share Posted November 12, 2016 1 час назад, tolik777 сказал: но нет VK и OK, т.к. плагин забугорный а что мешает изменить левые забугорные соцсети на ВК и ОК? В настройках выставляются иконки и цвет, а названия можно изменить в языках Ничего сложного Quote Link to comment Share on other sites More sharing options...
andros0789 Posted November 12, 2016 Share Posted November 12, 2016 а что мешает сделать самому на чистом css или нарисовать нужные плоского вида на фотошопе? Quote Link to comment Share on other sites More sharing options...
WOLF Posted November 13, 2016 Share Posted November 13, 2016 15 часов назад, tolik777 сказал: Не нужно, т.к. это совсем не то, что мне нужно. Мне нужны ссылки на мои группы, а не функция share это проще простого, найти две иконки в гугле, добавить код в GlobalTemplated и в ipbstyles.css вывести его на нужное "место" andros0789 1 Quote Link to comment Share on other sites More sharing options...
Silence Posted November 13, 2016 Share Posted November 13, 2016 В 11.11.2016 г. в 20:03, tolik777 сказал: На одном из форумов 4.1. видел справа приатаченное окошко с ссылками на группы в соц. сетях. Т.е. при прокрутке оно остается на месте. Не подскажите плагин или код, что такое же реализовать? HTML: Спойлер <div class="share-buttons"> <div class="share-button"> <a href="" target="_blank"> <div class="share-button-secondary"> <div class="share-button-secondary-content"> ваша страница </div> </div> <div class="share-button-primary"> <i class="share-button-icon fa fa-twitter"></i> </div> </a> </div> <div class="share-button"> <a href="" target="_blank"> <div class="share-button-secondary"> <div class="share-button-secondary-content"> ваша страница </div> </div> <div class="share-button-primary"> <i class="share-button-icon fa fa-facebook"></i> </div> </a> </div> <div class="share-button"> <a href="" target="_blank"> <div class="share-button-secondary"> <div class="share-button-secondary-content"> ваша страница </div> </div> <div class="share-button-primary"> <i class="share-button-icon fa fa-vk"></i> </div> </a> </div> <div class="share-button"> <a href="" target="_blank"> <div class="share-button-secondary"> <div class="share-button-secondary-content"> ваша страница </div> </div> <div class="share-button-primary"> <i class="share-button-icon fa fa-tumblr"></i> </div> </a> </div> <div class="share-button"> <a href="" target="_blank"> <div class="share-button-secondary"> <div class="share-button-secondary-content"> ваша страница </div> </div> <div class="share-button-primary"> <i class="share-button-icon fa fa-google-plus"></i> </div> </a> </div> </div> CSS: Спойлер * { box-sizing: border-box; } $button-height: 30px; $box-width: 300px; $box-height: 212px; .share-buttons { position: fixed; width: $box-width; height: $box-height; padding-left: ($box-width / 2) - ($button-height / 2); top: 50%; left: 20px; margin-left: -($box-width / 2); margin-top: -($box-height / 2); .share-buttons a { text-decoration: none; } .share-button { float: left; margin-top: 15px; &:first-child { margin-top: 0; } &:after { clear: both; display: table; } } } .share-button { display: block; position: relative; height: $button-height; &:hover { cursor: pointer; .share-button-primary { box-shadow: 1px 0 0 0 rgba(0, 0, 0, .1); } .share-button-secondary-content { transform: translate3d(0, 0, 0); } } } .share-button-primary { position: absolute; background: #fff; width: $button-height; height: $button-height; border-radius: ($button-height / 2); left: 0; top: 50%; margin-top: -($button-height / 2); } .share-button-icon { display: block; color: #242424; position: absolute; width: $button-height; line-height: $button-height; font-size: 16px; margin-top: 1px; } .share-button-secondary { overflow: hidden; margin-left: ($button-height / 2); height: $button-height; } .share-button-secondary-content { font-family: sans-serif; font-size: .75em; background: #fff; display: block; height: $button-height; text-align: left; padding-left: ($button-height * .8); padding-right: ($button-height * .6); line-height: $button-height; color: #242424; border-radius: 0 ($button-height / 2) ($button-height / 2) 0; transform: translate3d(-100%, 0, 0); transition: transform 175ms ease; } tolik777 1 Quote Link to comment Share on other sites More sharing options...
andros0789 Posted November 21, 2016 Share Posted November 21, 2016 куда проще (BIM40) Floating Social Sidebar 1.0.0.zip Quzask 1 Quote Link to comment Share on other sites More sharing options...
Quzask Posted November 21, 2016 Share Posted November 21, 2016 42 минуты назад, andros0789 сказал: куда проще Здравствуйте. Установил данный сайдбар себе на форум, но не нравиться, что постоянно при прокручивание страницы, он постоянно приезжает. Возможно сделать, чтобы он фиксировано находился по центру вертикали? Не знаю, правильно или нет, закомментировал строку effect : "slide-on-scroll", в самом плагине. Поправьте, если что не так. Благодарю. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.