sass
Scss användbara mixins
Sök…
Rena css3-pekarpilar med konturkanten
!!! Behållaren bör placeras relativt eller absolut
$ riktning - topp, botten, vänster, höger
$ marginal - marginal vid kanten i $ riktning . För övre och nedre riktning - det är från vänster till höger. För vänster och höger - det är från topp till botten.
$ färger - först är en kantfärg, andra - är en bakgrundsfärg (kanske är det bättre att ärva bakgrundsfärg från en förälder)
$ arrowSide - är en relativ storlek på en pil
$ isInset - pilen är inuti (sann) eller utanför behållaren
Här är en fungerande Plunker https://plnkr.co/edit/PRF9eLwmOg8OcUoGb22Y?p=preview
%pointer-core {
content: " ";
position: absolute;
border: solid transparent;
z-index: 9999;
}
@mixin pointer($direction, $margin: 10px, $colors: (#999, $gray), $arrowSide: 8px, $isInset: false){
$opposites: (
top: bottom,
bottom: top,
left: right,
right: left
);
$margin-direction: (
top: left,
bottom: left,
left: top,
right: top
);
&:before {
@extend %pointer-core;
border-width: $arrowSide;
@if $isInset {
border-#{$direction}-color: nth($colors, 1);
#{$direction}: -1px;
}
@else
{
border-#{map-get($opposites, $direction)}-color: nth($colors, 1);
#{map-get($opposites, $direction)}: 100%;
}
#{map-get($margin-direction, $direction)}: 0;
margin-#{map-get($margin-direction, $direction)}: $margin - 1;
}
&:after {
@extend %pointer-core;
border-width: $arrowSide - 1;
@if $isInset {
border-#{$direction}-color: nth($colors, 2);
#{$direction}: -1px;
}
@else
{
border-#{map-get($opposites, $direction)}-color: nth($colors, 2);
#{map-get($opposites, $direction)}: 100%;
}
#{map-get($margin-direction, $direction)}: 0;
margin-#{map-get($margin-direction, $direction)}: $margin;
}
}
Exempel på verktygstipspekaren
$color-purple-bg: #AF6EC4;
$color-purple-border: #5D0C66;
$color-yellow-bg: #E8CB48;
$color-yellow-border: #757526;
.tooltip {
position: relative;
&--arrow-down {
@include pointer('bottom', 30px, ($color-purple-border, $color-purple-bg), 15px);
}
&--arrow-right {
@include pointer('right', 60px, ($color-yellow-border, $color-yellow-bg), 15px);
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow