微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

无法从 Owl Carousel 2.3.4 复制文本值

如何解决无法从 Owl Carousel 2.3.4 复制文本值

我在 EXTJS 6.5 中实现了一个猫头鹰轮播。它工作正常,唯一的问题是我无法使用鼠标光标突出显示和复制轮播卡片内的数据(文本)。

我看过有关“user-select: text”的帖子,但似乎不起作用,或者我把它放在了错误的位置。

需要您的宝贵帮助。

在此处查看我的代码

Carousel.css

.#{$prefix}carousel-item,.#{$prefix}carousel-item > * {
    position: absolute !important;
    width: 100%;
    height: 100%;
    user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    -webkit-user-select: text !important;

}

Carousel.js

Ext.define('Ext.carousel.Carousel',{
extend: 'Ext.Container',alternateClassName: 'Ext.Carousel',xtype: 'carousel',requires: [
    'Ext.fx.easing.EaSEOut','Ext.carousel.Item','Ext.Indicator','Ext.util.TranslatableGroup'
],config: {
    /**
     * @cfg layout
     * Hide layout config in Carousel. It only causes confusion.
     * @accessor
     * @private
     */

    /**
     * @cfg {String} direction
     * The direction of the Carousel,either 'horizontal' or 'vertical'.
     * @accessor
     */
    direction: 'vertical',animation: {
        duration: 250,easing: {
            type: 'ease-out'
        }
    },/**
     * @cfg draggable
     * @hide
     */

    /**
     * @cfg {Boolean/Ext.carousel.Indicator} indicator
     * Provides an indicator while toggling between child items to let the user
     * kNow where they are in the card stack.
     * @accessor
     */
    indicator: true,/**
     * @cfg {String} ui
     * Style options for Carousel. Default is 'dark'. 'light' is also available.
     * @accessor
     */
    ui: 'dark',itemConfig: {
        translatable: {
            type: 'csstransform'
        }
    },bufferSize: 1,itemLength: null
},baseCls: Ext.baseCssprefix + 'carousel',itemLength: 0,offset: 0,flickStartOffset: 0,flickStartTime: 0,dragDirection: 0,count: 0,painted: false,activeIndex: -1,beforeInitialize: function() {
    var me = this;

    me.element.on({
        resize: 'onSizeChange',dragstart: 'onDragStart',drag: 'onDrag',dragend: 'onDragEnd',dragcancel: 'onDragEnd',scope: me
    });

    me.carouselItems = [];

    me.orderedCarouselItems = [];

    me.inactiveCarouselItems = [];

    me.hiddenTranslation = 0;
},updateBufferSize: function(size) {
    var ItemClass = Ext.carousel.Item,total = size * 2 + 1,isRendered = this.isRendered(),bodyElement = this.bodyElement,items = this.carouselItems,ln = items.length,itemConfig = Ext.apply({
            ownerCmp: this
        },this.getItemConfig()),itemLength = this.getItemLength(),direction = this.getDirection(),setterName = direction === 'horizontal' ? 'setWidth' : 'setHeight',i,item;

    for (i = ln; i < total; i++) {
        item = Ext.factory(itemConfig,ItemClass);

        if (itemLength) {
            item[setterName].call(item,itemLength);
        }
        items.push(item);
        bodyElement.append(item.renderElement);

        if (isRendered && item.setRendered(true)) {
            item.fireEvent('renderedchange',this,item,true);
        }
    }

    this.getTranslatable().setActiveIndex(size);
},getRefItems: function (deep) {
    var ret = this.callParent([deep]),carouselItems = this.carouselItems,n = carouselItems.length,item;

    for (i = 0; i < n; ++i) {
        item = carouselItems[i];
        ret.push(item);

        if (deep && item.getRefItems) {
            ret.push.apply(ret,item.getRefItems(deep));
        }
    }

    return ret;
},onSizeChange: function() {
    this.refreshSizing();
    this.refreshCarouselItems();
    this.refreshActiveItem();
},onItemAdd: function(item,index) {
    this.callParent([item,index]);

    var innerIndex = this.getInnerItems().indexOf(item),indicator = this.getIndicator();

    if (indicator && item.isInnerItem()) {
        indicator.add();
    }

    if (innerIndex <= this.getActiveIndex()) {
        this.refreshActiveIndex();
    }

    if (this.isIndexDirty(innerIndex) && !this.isItemsInitializing) {
        this.refreshActiveItem();
    }
},doItemLayoutAdd: function(item,index,destroying) {
    if (item.isInnerItem()) {
        return;
    }

    this.callParent(arguments);
},onItemRemove: function(item,destroying) {
    this.callParent(arguments);

    var innerIndex = this.getInnerItems().indexOf(item),indicator = this.getIndicator(),ln,carouselItem;

    if (item.isInnerItem() && indicator) {
        indicator.remove();
    }

    if (innerIndex <= this.getActiveIndex()) {
        this.refreshActiveIndex();
    }

    if (this.isIndexDirty(innerIndex)) {
        for (i = 0,ln = carouselItems.length; i < ln; i++) {
            carouselItem = carouselItems[i];

            if (carouselItem.getComponent() === item) {
                carouselItem.setComponent(null);
                break;
            }
        }

        this.refreshActiveItem();
    }
},doItemLayoutRemove: function(item) {
    if (item.isInnerItem()) {
        return;
    }

    this.callParent(arguments);
},onInnerItemmove: function(item,toIndex,fromIndex) {
    if ((this.isIndexDirty(toIndex) || this.isIndexDirty(fromIndex))) {
        this.refreshActiveItem();
    }
},doItemLayoutMove: function(item) {
    if (item.isInnerItem()) {
        return;
    }

    this.callParent(arguments);
},isIndexDirty: function(index) {
    var activeIndex = this.getActiveIndex(),bufferSize = this.getBufferSize();

    return (index >= activeIndex - bufferSize && index <= activeIndex + bufferSize);
},getTranslatable: function() {
    var me = this,translatable = me.translatable;

    if (!translatable) {
        me.translatable = translatable = new Ext.util.TranslatableGroup();
        translatable.setItems(me.orderedCarouselItems);
        translatable.on('animationend','onAnimationEnd',me);
    }

    return translatable;
},onDragStart: function(e) {
    var direction = this.getDirection(),absDeltaX = e.absDeltaX,absDeltaY = e.absDeltaY;

    this.isDragging = true;

    if ((direction === 'horizontal' && absDeltaX > absDeltaY) ||
        (direction === 'vertical' && absDeltaY > absDeltaX)) {
        e.stopPropagation();
    } else {
        this.isDragging = false;
        return;
    }

    this.getTranslatable().stopAnimation();

    this.dragStartOffset = this.offset;
    this.dragDirection = 0;
},onDrag: function(e) {
    if (!this.isDragging) {
        return;
    }

    var startOffset = this.dragStartOffset,delta = direction === 'horizontal' ? e.deltaX : e.deltaY,lastOffset = this.offset,flickStartTime = this.flickStartTime,dragDirection = this.dragDirection,Now = Ext.Date.Now(),currentActiveIndex = this.getActiveIndex(),maxIndex = this.getMaxItemIndex(),lastDragDirection = dragDirection,offset;

    if ((currentActiveIndex === 0 && delta > 0) || (currentActiveIndex === maxIndex && delta < 0)) {
        delta *= 0.5;
    }

    offset = startOffset + delta;

    if (offset > lastOffset) {
        dragDirection = 1;
    }
    else if (offset < lastOffset) {
        dragDirection = -1;
    }

    if (dragDirection !== lastDragDirection || (Now - flickStartTime) > 300) {
        this.flickStartOffset = lastOffset;
        this.flickStartTime = Now;
    }

    this.dragDirection = dragDirection;

    this.setoffset(offset);
},onDragEnd: function(e) {
    if (!this.isDragging) {
        return;
    }

    this.onDrag(e);

    this.isDragging = false;

    var Now = Ext.Date.Now(),itemLength = this.itemLength,threshold = itemLength / 2,offset = this.offset,activeIndex = this.getActiveIndex(),animationDirection = 0,flickdistance = offset - this.flickStartOffset,flickDuration = Now - this.flickStartTime,veLocity;

    if (flickDuration > 0 && Math.abs(flickdistance) >= 10) {
        veLocity = flickdistance / flickDuration;

        if (Math.abs(veLocity) >= 1) {
            if (veLocity < 0 && activeIndex < maxIndex) {
                animationDirection = -1;
            }
            else if (veLocity > 0 && activeIndex > 0) {
                animationDirection = 1;
            }
        }
    }

    if (animationDirection === 0) {
        if (activeIndex < maxIndex && offset < -threshold) {
            animationDirection = -1;
        }
        else if (activeIndex > 0 && offset > threshold) {
            animationDirection = 1;
        }
    }

    if (indicator) {
        indicator.setActiveIndex(activeIndex - animationDirection);
    }

    this.animationDirection = animationDirection;

    this.setoffsetAnimated(animationDirection * itemLength);
},onRender: function() {
    this.callParent();
    this.refresh();
},applyAnimation: function(animation) {
    animation.easing = Ext.factory(animation.easing,Ext.fx.easing.EaSEOut);

    return animation;
},updateDirection: function(direction) {
    var indicator = this.getIndicator(),vertical = (direction === 'vertical');

    this.currentAxis = vertical ? 'y' : 'x';

    this.setTouchAction(vertical ? { panY: false } : { panX: false });

    if (indicator) {
        indicator.setDirection(direction);
    }
},/**
 * @private
 * @chainable
 */
setoffset: function(offset) {
    this.offset = offset;

    if (Ext.isNumber(this.itemOffset)) {
        this.getTranslatable().translateAxis(this.currentAxis,offset + this.itemOffset);
    }

    return this;
},/**
 * @private
 * @return {Ext.carousel.Carousel} this
 * @chainable
 */
setoffsetAnimated: function(offset) {
    var indicator = this.getIndicator();

    if (indicator) {
        indicator.setActiveIndex(this.getActiveIndex() - this.animationDirection);
    }

    this.offset = offset;

    this.getTranslatable().translateAxis(this.currentAxis,offset + this.itemOffset,this.getAnimation());

    return this;
},onAnimationEnd: function(translatable) {
    if (this.destroyed) {
        return;
    }

    var currentActiveIndex = this.getActiveIndex(),animationDirection = this.animationDirection,axis = this.currentAxis,currentOffset = translatable[axis],offset;

    if (animationDirection === -1) {
        offset = itemLength + currentOffset;
    }
    else if (animationDirection === 1) {
        offset = currentOffset - itemLength;
    }
    else {
        offset = currentOffset;
    }

    offset -= this.itemOffset;
    this.offset = offset;
    this.setActiveItem(currentActiveIndex - animationDirection);
},refresh: function() {
    this.refreshSizing();
    this.refreshActiveItem();
},refreshSizing: function() {
    var element = this.element,translatableItemLength = {
            x: 0,y: 0
        },itemOffset,containerSize;

    if (this.getDirection() === 'horizontal') {
        containerSize = element.getWidth();
    }
    else {
        containerSize = element.getHeight();
    }

    this.hiddenTranslation = -containerSize;

    if (itemLength === null) {
        itemLength = containerSize;
        itemOffset = 0;
    }
    else {
        itemOffset = (containerSize - itemLength) / 2;
    }

    this.itemLength = itemLength;
    this.itemOffset = itemOffset;
    translatableItemLength[this.currentAxis] = itemLength;
    this.getTranslatable().setItemLength(translatableItemLength);
},refreshOffset: function() {
    this.setoffset(this.offset);
},refreshActiveItem: function() {
    this.updateActiveItem(this.getActiveItem());
},/**
 * Returns the index of the currently active card.
 * @return {Number} The index of the currently active card.
 */
getActiveIndex: function() {
    return this.activeIndex;
},refreshActiveIndex: function() {
    this.activeIndex = this.getInnerItemIndex(this.getActiveItem());
},refreshCarouselItems: function() {
    var items = this.carouselItems,item;

    for (i = 0,ln = items.length; i < ln; i++) {
        item = items[i];
        item.getTranslatable().refresh();
    }

    this.refreshInactiveCarouselItems();
},refreshInactiveCarouselItems: function() {
    var items = this.inactiveCarouselItems,hiddenTranslation = this.hiddenTranslation,ln = items.length; i < ln; i++) {
        item = items[i];
        item.translateAxis(axis,hiddenTranslation);
    }
},/**
 * @private
 * @return {Number}
 */
getMaxItemIndex: function() {
    return this.innerItems.length - 1;
},/**
 * @private
 * @return {Number}
 */
getInnerItemIndex: function(item) {
    return this.innerItems.indexOf(item);
},/**
 * @private
 * @return {Object}
 */
getInnerItemAt: function(index) {
    return this.innerItems[index];
},/**
 * @private
 * @return {Object}
 */
applyActiveItem: function(activeItem,oldActiveItem) {
    var activeIndex;

    activeItem = this.callParent([activeItem,oldActiveItem]);

    if (activeItem) {
        activeIndex = this.getInnerItemIndex(activeItem);

        if (activeIndex !== -1) {
            this.activeIndex = activeIndex;
            return activeItem;
        }
    }
},updateActiveItem: function(activeItem,oldActiveItem) {
    var me = this,activeIndex = me.getActiveIndex(),maxIndex = me.getMaxItemIndex(),indicator = me.getIndicator(),bufferSize = me.getBufferSize(),carouselItems = me.carouselItems.slice(),orderedCarouselItems = this.orderedCarouselItems,visibleIndexes = {},visibleItems = {},visibleItem,component,id,carouselItem;

    if (carouselItems.length === 0) {
        return;
    }

    me.callParent([activeItem,oldActiveItem]);

    orderedCarouselItems.length = 0;

    if (activeItem) {
        id = activeItem.getId();
        visibleItems[id] = activeItem;
        visibleIndexes[id] = bufferSize;

        if (activeIndex > 0) {
            for (i = 1; i <= bufferSize; i++) {
                index = activeIndex - i;
                if (index >= 0) {
                    visibleItem = me.getInnerItemAt(index);
                    id = visibleItem.getId();
                    visibleItems[id] = visibleItem;
                    visibleIndexes[id] = bufferSize - i;
                }
                else {
                    break;
                }
            }
        }

        if (activeIndex < maxIndex) {
            for (i = 1; i <= bufferSize; i++) {
                index = activeIndex + i;
                if (index <= maxIndex) {
                    visibleItem = me.getInnerItemAt(index);
                    id = visibleItem.getId();
                    visibleItems[id] = visibleItem;
                    visibleIndexes[id] = bufferSize + i;
                }
                else {
                    break;
                }
            }
        }

        for (i = 0,ln = carouselItems.length; i < ln; i++) {
            carouselItem = carouselItems[i];
            component = carouselItem.getComponent();

            if (component) {
                id = component.getId();

                if (visibleIndexes.hasOwnProperty(id)) {
                    carouselItems.splice(i,1);
                    i--;
                    ln--;
                    delete visibleItems[id];
                    orderedCarouselItems[visibleIndexes[id]] = carouselItem;
                }
            }
        }

        for (id in visibleItems) {
            if (visibleItems.hasOwnProperty(id)) {
                visibleItem = visibleItems[id];
                carouselItem = carouselItems.pop();
                carouselItem.setComponent(visibleItem);
                orderedCarouselItems[visibleIndexes[id]] = carouselItem;
            }
        }
    }

    me.inactiveCarouselItems.length = 0;
    me.inactiveCarouselItems = carouselItems;
    me.refreshOffset();
    me.refreshInactiveCarouselItems();

    if (indicator && !indicator.isDestroying && activeIndex !== -1) {
        indicator.sync(me.getInnerItems().length,activeIndex);
    }
},/**
 * Switches to the next card.
 * @return {Ext.carousel.Carousel} this
 * @chainable
 */
next: function() {
    this.setoffset(0);

    if (this.activeIndex === this.getMaxItemIndex()) {
        return this;
    }

    this.animationDirection = -1;
    this.setoffsetAnimated(-this.itemLength);
    return this;
},/**
 * Switches to the prevIoUs card.
 * @return {Ext.carousel.Carousel} this
 * @chainable
 */
prevIoUs: function() {
    this.setoffset(0);

    if (this.activeIndex === 0) {
        return this;
    }

    this.animationDirection = 1;
    this.setoffsetAnimated(this.itemLength);
    return this;
},/**
 * @private
 */
applyIndicator: function(indicator,currentIndicator) {
    return Ext.factory(indicator,Ext.Indicator,currentIndicator);
},/**
 * @private
 */
updateIndicator: function(indicator) {
    var me = this,bottom,right;

    if (indicator) {
        if (me.getDirection() === 'horizontal') {
            bottom = 0;
            right = null;
        } else {
            bottom = null;
            right = 0;
        }

        indicator
            //force the indicator to be floating
            .setRight(right)
            .setBottom(bottom)
            .setUi(me.getUi())
            .on({
                indicatortap: 'onIndicatorTap',next: 'next',prevIoUs: 'prevIoUs',scope: me
            });

        me.insertFirst(indicator);
    }
},onIndicatorTap: function (indicator,index) {
    this.setActiveItem(index);
},doDestroy: function() {
    var me = this,carouselItems = me.carouselItems.slice();

    me.carouselItems.length = 0;

    Ext.destroy(carouselItems,me.getIndicator(),me.translatable);

    me.callParent();
}

});

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?