1

私は QTips を持っています:

eventRender: function (event, element, view) {
    element.qtip({
        content: event.title + event.hours,
        position:{
            target: 'mouse'
        },
        //  show: { event: 'click' },
        hide: { event: 'mousedown mouseleave' },
        style: { 
            width: 200,
            padding: 5,
            color: 'black',
            textAlign: 'left',
            border: {
                width: 1,
                radius: 3
            },
            classes: 'custSideTip'
        } 
    });
}

CSS:

.custSideTip
{
    position:fixed !important;
    right:0 !important;
    max-width:200px !important;
}

ここに画像の説明を入力

しかし、彼らはページを離れます...

私は正しく固定された位置を試しましたが、何もうまくいかないようです...

ヒントの右座標は body.right / page.right ... を超えてはいけません..

ありがとう

4

2 に答える 2