JS
textResize(newRect, index) { const BoxWidth = newRect.width+'' this.texts[index].BoxWidth = BoxWidth.substring(0, BoxWidth.indexOf(".")) const BoxHeight = newRect.height+'' this.texts[index].BoxHeight = BoxHeight.substring(0, BoxHeight.indexOf(".")) const BoxTop = newRect.top+'' this.texts[index].BoxTop = BoxTop.substring(0, BoxTop.indexOf(".")) const BoxLeft = newRect.left+'' this.texts[index].BoxLeft = BoxLeft.substring(0, BoxLeft.indexOf(".")) } logoResize(newRect, index) { const Width = newRect.width'' this.logos[index].Width = Width.substring(0, Size.indexOf(".")) const Height = newRect.height+'' this.logos[index].Height = Height .substring(0, Size.indexOf(".")) const Top = newRect.top+'' this.logos[index].Top = Top.substring(0, Top.indexOf(".")) const Left = newRect.left+'' this.logos[index].Left = Left.substring(0, Left.indexOf(".")) }
除此之外还有字幕向左或向右滚动的CSS
.roll-left { animation: wordsLoopLeft 6s linear infinite normal; } .roll-right { animation: wordsLoopRight 6s linear infinite normal; } @keyframes wordsLoopLeft { 0% { transform: translateX(100%); -webkit-transform: translateX(100%); } 100% { transform: translateX(-40%); -webkit-transform: translateX(-40%); } } @keyframes wordsLoopRight { 0% { transform: translateX(-40%); -webkit-transform: translateX(-40%); } 100% { transform: translateX(100%); -webkit-transform: translateX(100%); } }
上述就是小编为大家分享的如何正确的使用Vue-drag-resize插件了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注创新互联行业资讯频道。