123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <template>
- <div class="tooltip-base-box">
- <div class="row center">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Top Left prompts info"
- placement="top-start"
- >
- <el-button>top-start</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Top Center prompts info"
- placement="top"
- >
- <el-button>top</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Top Right prompts info"
- placement="top-end"
- >
- <el-button>top-end</el-button>
- </el-tooltip>
- </div>
- <div class="row">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Left Top prompts info"
- placement="left-start"
- >
- <el-button>left-start</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Right Top prompts info"
- placement="right-start"
- >
- <el-button>right-start</el-button>
- </el-tooltip>
- </div>
- <div class="row">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Left Center prompts info"
- placement="left"
- >
- <el-button class="mt-3 mb-3">left</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Right Center prompts info"
- placement="right"
- >
- <el-button>right</el-button>
- </el-tooltip>
- </div>
- <div class="row">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Left Bottom prompts info"
- placement="left-end"
- >
- <el-button>left-end</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Right Bottom prompts info"
- placement="right-end"
- >
- <el-button>right-end</el-button>
- </el-tooltip>
- </div>
- <div class="row center">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Bottom Left prompts info"
- placement="bottom-start"
- >
- <el-button>bottom-start</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Bottom Center prompts info"
- placement="bottom"
- >
- <el-button>bottom</el-button>
- </el-tooltip>
- <el-tooltip
- class="box-item"
- effect="dark"
- content="Bottom Right prompts info"
- placement="bottom-end"
- >
- <el-button>bottom-end</el-button>
- </el-tooltip>
- </div>
- </div>
- </template>
- <style>
- .tooltip-base-box {
- width: 600px;
- }
- .tooltip-base-box .row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .tooltip-base-box .center {
- justify-content: center;
- }
- .tooltip-base-box .box-item {
- width: 110px;
- margin-top: 10px;
- }
- </style>
|