sidebar.vue 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <div class="client-sidebar">
  3. <ul>
  4. <li><a class="sidebar-default-box"><i></i><p>咨询</p></a></li>
  5. <li>
  6. <div class="sidebar-default-box"><i @click="backTop"></i><p>客服</p></div>
  7. <div class="sidebar-hover-box">
  8. <span>服务热线</span><h4>4000522130</h4>
  9. </div>
  10. </li>
  11. <li><a class="sidebar-default-box"><i></i><p>体验</p></a></li>
  12. <li style="display: none"><i @click="backTop"></i><p>置顶</p></li>
  13. </ul>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'mtaSidebar',
  19. // vue的两个生命钩子,这里不多解释。
  20. // window对象,所有浏览器都支持window对象。它表示浏览器窗口,监听滚动事件
  21. mounted () {
  22. window.addEventListener('scroll', this.scrollToTop)
  23. },
  24. destroyed () {
  25. window.removeEventListener('scroll', this.scrollToTop)
  26. },
  27. methods: {
  28. // 点击图片回到顶部方法,加计时器是为了过渡顺滑
  29. backTop() {
  30. const that = this
  31. let timer = setInterval(() => {
  32. let ispeed = Math.floor(-that.scrollTop / 5)
  33. document.documentElement.scrollTop = document.body.scrollTop = that.scrollTop + ispeed
  34. if (that.scrollTop === 0) {
  35. clearInterval(timer)
  36. }
  37. }, 16)
  38. },
  39. // 为了计算距离顶部的高度,当高度大于60显示回顶部图标,小于60则隐藏
  40. scrollToTop() {
  41. const that = this
  42. let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
  43. that.scrollTop = scrollTop
  44. if (that.scrollTop > 60) {
  45. that.btnFlag = true
  46. } else {
  47. that.btnFlag = false
  48. }
  49. }
  50. }
  51. };
  52. </script>
  53. <style lang="scss" scoped>
  54. .client-sidebar{
  55. display: none;
  56. position: fixed;
  57. z-index: 100;
  58. top: 300px;
  59. right: 0;
  60. li{
  61. width: 94px;height: 102px;position: relative;
  62. i{width: 45px;height: 40px;display: block;background: #8be0ad;margin: 16px auto;}
  63. p{font-size:18px;color: #4c4c4c;text-align: center;}
  64. .sidebar-default-box{border: 1px solid #eee;box-sizing: border-box;background: #fff;z-index: 2;background: #fff;position: absolute;top:0;left: 0;right: 0;bottom: 0;}
  65. .sidebar-hover-box{
  66. width: 220px;height: 102px;display: block;padding: 24px;border: 1px solid #eee;transition: all 0.5s;
  67. position: absolute;right: -150px;background: #fff;top: 0;box-sizing: border-box;z-index: 1;
  68. span{font-size:16px;display: block;color: #1f1f1f;margin-bottom: 10px}
  69. h4{font-size:30px;color: #3e7ee7;font-weight: bold;}
  70. }
  71. }
  72. li:hover{
  73. .sidebar-default-box{background: #5da8f7;}
  74. .sidebar-hover-box{
  75. right: 92px;
  76. }
  77. }
  78. li:nth-child(1) i{-background: pink;}
  79. li:nth-child(2) i{-background: green;}
  80. }
  81. </style>