2017-01-25 4 views
6

У меня есть плеер, который я использую на своем веб-сайте.
Я хочу изменить внешний вид кнопки воспроизведения.Площадь div с границей. Показывать только углы

Я думал об этом с пунктирной рамкой, а затем увеличил пространство между тире. Это не сработало.

Я не могу использовать изображение. Есть ли решение CSS(3)?

Я хочу, чтобы это выглядело примерно так.

Это действительно все об углах!

enter image description here

------------- UPDATE ----------------

Поэтому я использовал решение @ Найла, чтобы она работала. Run против следующей задачи:

Я использую Video.js плагин для WordPress и я создаю новую кожу

Как я после css я обнаружил, что там уже был ::before Псевдо, который обрабатывает игры стрелка ,

::before -pseudo стрелки указывает ширину 100%, что помогает стрелке находиться в центре. Поскольку я использую ширину 30%, чтобы сделать границу границ. Это перезаписывает более раннюю ширину 100%. В результате в следующем:

enter image description here

Вот:
CodePen

Если вы просто мимо этого CSS в CSS-поле, которое вы получите, где я сейчас и вижу проблему:

/* 
Player Skin Designer for Video.js 
http://videojs.com 

To customize the player skin edit 
the CSS below. Click "details" 
below to add comments or questions. 
This file uses some SCSS. Learn more 
at http://sass-lang.com/guide) 

This designer can be linked to at: 
http://codepen.io/heff/pen/EarCt/left/?editors=010 
*/ 

// The following are SCSS variables to automate some of the values. 
// But don't feel limited by them. Change/replace whatever you want. 

// The color of icons, text, and the big play button border. 
// Try changing to #0f0 
$primary-foreground-color: #fff; // #fff default 
// The default color of control backgrounds is mostly black but with a little 
// bit of blue so it can still be seen on all-black video frames, which are c ommon. 
// Try changing to #900 
$primary-background-color: #2B333F; // #2B333F default 

// Try changing to true 
$center-big-play-button: true; // true default 

.video-js { 
/* The base font size controls the size of everything, not just text. 
All dimensions use em-based sizes so that the scale along with the font size. 
Try increasing it to 15px and see what happens. */ 
font-size: 10px; 

/* The main font color changes the ICON COLORS as well as the text */ 
color: $primary-foreground-color; 
} 

/* The "Big Play Button" is the play button that shows before the video plays. 
To center it set the align values to center and middle. The typical location 
of the button is the center, but there is trend towards moving it to a corner 
where it gets out of the way of valuable content in the poster image.*/ 
.vjs-default-skin .vjs-big-play-button { 
    /* The font size is what makes the big play button...big. 
All width/height values use ems, which are a multiple of the font size. 
If the .video-js font-size is 10px, then 3em equals 30px.*/ 
font-size: 3em; 

/* We're using SCSS vars here because the values are used in multiple places. 
Now that font size is set, the following em values will be a multiple of the 
new font size. If the font-size is 3em (30px), then setting any of 
the following values to 3em would equal 30px. 3 * font-size. */ 
$big-play-width: 3em; 
    /* 1.5em = 45px default */ 
    $big-play-height: 3em; 

line-height: $big-play-height; 
height: $big-play-height; 
width: $big-play-width; 

/* 0.06666em = 2px default */ 
/* 0.3em = 9px default */ 
border:none; 
border-radius:0; 

@if $center-big-play-button { 
/* Align center */ 
left: 50%; 
top: 50%; 
margin-left: -($big-play-width/2); 
margin-top: -($big-play-height/2); 
} @else { 
/* Align top left. 0.5em = 15px default */ 
left: 0.5em; 
top: 0.5em; 
} 
} 
.vjs-big-play-button:before { 
position: absolute; 
content: ""; 
width: 30px !important; 
height: 30px!important; 
right: -2px; 
bottom: -2px; 
border-left: 2px solid $primary-foreground-color; 
border-top: 2px solid $primary-foreground-color; 
} 
.vjs-big-play-button:after { 
position: absolute; 
content: ""; 
width: 30px; 
height: 30px; 
right: -2px; 
bottom: -2px; 
border-right: 2px solid $primary-foreground-color; 
border-bottom: 2px solid $primary-foreground-color; 
} 

/* The default color of control backgrounds is mostly black but with a little 
    bit of blue so it can still be seen on all-black video frames, which are  common. */ 
.video-js .vjs-control-bar, 
.video-js .vjs-big-play-button, 
.video-js .vjs-menu-button .vjs-menu-content { 
    /* IE8 - has no alpha support */ 
    background-color: $primary-background-color; 
    /* Opacity: 1.0 = 100%, 0.0 = 0% */ 
    background-color: rgba($primary-background-color, 0.7); 
} 

// Make a slightly lighter version of the main background 
// for the slider background. 
$slider-bg-color: lighten($primary-background-color, 33%); 

/* Slider - used for Volume bar and Progress bar */ 
.video-js .vjs-slider { 
background-color: $slider-bg-color; 
background-color: rgba($slider-bg-color, 0.5); 
} 

/* The slider bar color is used for the progress bar and the volume bar 
(the first two can be removed after a fix that's coming) */ 
.video-js .vjs-volume-level, 
.video-js .vjs-play-progress, 
.video-js .vjs-slider-bar { 
background: $primary-foreground-color; 
} 

/* The main progress bar also has a bar that shows how much has been loaded.  */ 
.video-js .vjs-load-progress { 
    /* For IE8 we'll lighten the color */ 
    background: lighten($slider-bg-color, 25%); 
    /* Otherwise we'll rely on stacked opacities */ 
    background: rgba($slider-bg-color, 0.5); 
} 

/* The load progress bar also has internal divs that represent 
smaller disconnected loaded time ranges */ 
.video-js .vjs-load-progress div { 
    /* For IE8 we'll lighten the color */ 
    background: lighten($slider-bg-color, 50%); 
    /* Otherwise we'll rely on stacked opacities */ 
    background: rgba($slider-bg-color, 0.75); 
} 
+0

Да, есть способы, что вы пробовали до сих пор? –

+0

Кажется, что встроенный svg сделал бы трюк чище, чем чистый css –

+0

@DominicTobias pure css3 делает это :) –

ответ

5

мы можем сделать это с помощью pseudo элементов, проверьте демо

.box { 
 
    width: 200px; 
 
    height: 200px; 
 
    margin: 15px auto; 
 
    background: #999; 
 
    position: relative; 
 
} 
 
.box:before { 
 
    position: absolute; 
 
    content: ""; 
 
    width: 30px; 
 
    height: 30px; 
 
    top: -2px; 
 
    left: -2px; 
 
    z-index:-1; 
 
    border-left: 2px solid red; 
 
    border-top: 2px solid red; 
 
} 
 
.box:after { 
 
    position: absolute; 
 
    content: ""; 
 
    width: 30px; 
 
    height: 30px; 
 
    right: -2px; 
 
    bottom: -2px; 
 
    z-index:-1; 
 
    border-right: 2px solid red; 
 
    border-bottom: 2px solid red; 
 
}
<div class="box"></div>

+0

Похоже, что линии должны наложите поле fyi –

+1

@DominicTobias, пожалуйста, проверьте сейчас –

+0

Это приятно. Thnx. Я собираюсь проверить это! – Interactive

0

Я хотел бы написать эту кнопку, как это, пожалуйста, переписать свои единицы из-за дизайна:

.play-icon {position:relative;} 
    .play-icon:before {content: '';position:absolute;left:-1px;top:-1px; 
width:10px; height:10px; border-left:1px solid #fff; border-top:1px solid #fff; 
display:inline-block; } 
    .play-icon:after {content: '';position:absolute;right:-1px;bottom:-1px; 
width:10px; height:10px; border-right:1px solid #fff; 
border-bottom:1px solid #fff; display:inline-block; } 
2

Вы можете использовать один элемент и создать границу с псевдо-элементами и стрелки вы может использовать специальный символ. Также вы можете использовать Flexbox для выравнивания.

body { 
 
    background: #000000; 
 
} 
 
.button { 
 
    margin: 50px; 
 
    width: 100px; 
 
    height: 100px; 
 
    display: flex; 
 
    align-items: center; 
 
    justify-content: center; 
 
    background: #1E232C; 
 
    color: white; 
 
    font-size: 20px; 
 
    position: relative; 
 
} 
 
.button:before, 
 
.button:after { 
 
    width: 30px; 
 
    height: 30px; 
 
    content: ''; 
 
    position: absolute; 
 
} 
 
.button:before { 
 
    border-top: 1px solid white; 
 
    border-left: 1px solid white; 
 
    top: 0; 
 
    left: 0; 
 
} 
 
.button:after { 
 
    border-right: 1px solid white; 
 
    border-bottom: 1px solid white; 
 
    bottom: 0; 
 
    right: 0; 
 
}
<div class="button">►</div>

0

Использование комбо :before и :after вы можете получить эффект, который вы хотите.

Идея состоит в использовании псевдоэлементов :before и :after, чтобы создать 2 небольших квадрата внутри вашего элемента и дать им белые границы соответственно на их верхнем/левом и нижнем/правом сторонах.

Поскольку ваш дизайн требует, чтобы белые границы были смещены за пределами кнопки, мы будем использовать отрицательное позиционирование.

html, 
 
body { 
 
    height: 100%; 
 
    width: 100%; 
 
    background-color: #000000; 
 
} 
 

 
.container { 
 
    height: 100%; 
 
    display: flex; 
 
    justify-content: center; 
 
    align-items: center; 
 
} 
 

 
.btnPlay { 
 
    position: relative; 
 
    color: #ffffff; 
 
    font-size: 20px; 
 
    width: 100px; 
 
    height: 100px; 
 
    line-height: 100px; 
 
    text-align: center; 
 
    background-color: #222222; 
 
    transition: background 0.1s ease-out; 
 
} 
 

 
.btnPlay:before, 
 
.btnPlay:after { 
 
    content: ""; 
 
    position: absolute; 
 
    display: block; 
 
    width: 25px; 
 
    height: 25px; 
 
} 
 

 
.btnPlay:before { 
 
    top: -1px; 
 
    left: -1px; 
 
    border-left: 1px solid #ffffff; 
 
    border-top: 1px solid #ffffff; 
 
} 
 

 
.btnPlay:after { 
 
    bottom: -1px; 
 
    right: -1px; 
 
    border-right: 1px solid #ffffff; 
 
    border-bottom: 1px solid #ffffff; 
 
} 
 

 
.btnPlay:hover { 
 
    cursor: pointer; 
 
    background-color: #292929; 
 
}
<div class="container"> 
 
    <div class="btnPlay"> 
 
    &#9658; 
 
    </div> 
 
</div>

0

Если псевдо-элементы не ваша сумка:

body { background: #555; } 
 

 
.parent, .main { position: relative; height: 100px; width: 100px; } 
 
.main { background-color: navy; z-index: 2; } 
 
.sub { position: absolute; background-color: white; height: 30px; width: 30px; z-index: 1; } 
 
.sub.tl { top:-1px; left:-1px; } 
 
.sub.br { bottom:-1px; right:-1px; }
<div class="parent"> 
 
    <div class="main"></div> 
 
    <div class="sub tl"></div> 
 
    <div class="sub br"></div> 
 
</div>

0

Это возможно корыта использование CSS pseudo elements. Вам просто нужно создать два белых ящика и pla ce ниже их родителя, используя отрицательный z-index исключительно на псевдоэлементах, потому что если вы установите z-index для родителя, псевдоэлементы не будут знать, что делать с их z-index, потому что у родителя z-index больше веса.

Вот рабочий Fiddle.

<div class="container"> 
    <div class="play-box"></div> 
</div> 

body { 
    background: black; 
} 

.play-box { 
    margin: 5rem; 
    width: 200px; 
    height: 200px; 
    background: #2f2f2f; 
    position: relative; 
} 

.play-box::before, 
.play-box::after { 
    position: absolute; 
    content: ''; 
    background: #fff; 
    width: 50px; 
    height: 50px; 
    z-index: -1; 
} 

.play-box::before { 
    left: -1px; 
    top: -1px; 
} 

.play-box::after { 
    right: -1px; 
    bottom: -1px; 
} 
1

Вместо того, чтобы использовать псевдо-элементы для углов, почему бы не использовать box-shadow?

html,body{ 
 
    background: black; 
 
    height: 100%; 
 
} 
 
.player{ 
 
    background: #333; 
 
    box-shadow: 16px 16px 0 -15px white, -16px -16px 0 -15px white; 
 
    display: block; 
 
    height: 50px; 
 
    margin: 50px auto; 
 
    position: relative; 
 
    width: 50px; 
 
} 
 
.player::before{ 
 
    border-color: transparent transparent transparent white; 
 
    border-style: solid; 
 
    border-width: 10px; 
 
    content: ""; 
 
    display: block; 
 
    left: 20px; 
 
    position: absolute; 
 
    top: 15px; 
 
}
<span class="player"></span>

1

Так ответил, вот для Infos несколько способов (включая тесты на парения эффект и радиуса) без pseudos и CSS (3):

(использование тени и градиент, как я прокомментировал день назад).

SVG не участвует и не требовался, но выполнял бы эту работу.

div:nth-child(1),div:nth-child(6),div:nth-child(11) { 
 
    box-shadow: 
 
    -70px -70px 0 -67px red, 
 
    70px 70px 0 -67px red; 
 
} 
 
div:nth-child(1):hover,div:nth-child(6):hover,div:nth-child(11):hover { 
 
    box-shadow: 
 
    -70px -70px 0 -67px red, 
 
    70px 70px 0 -67px red, 
 
     0  0 0 3px gold; 
 
} 
 

 
div:nth-child(2),div:nth-child(7),div:nth-child(12) { 
 
    background: 
 
    linear-gradient(#333, #333) no-repeat center, 
 
    linear-gradient(to bottom right, red 20%, transparent 20%, transparent 80%, red 80%) no-repeat center ; 
 
    background-size: 
 
    auto auto, 
 
    200px 200px; 
 
} 
 
div:nth-child(2):hover, div:nth-child(7):hover,div:nth-child(12):hover { 
 
    background: 
 
    linear-gradient(#333, #333) no-repeat center, 
 
    linear-gradient(to bottom right, red 20%, transparent 20%, transparent 80%, red 80%) no-repeat center, 
 
    white; 
 
    background-size: 
 
    auto auto, 
 
    200px 200px; 
 
} 
 
div:nth-child(3),div:nth-child(8),div:nth-child(13) { 
 
    border:none; 
 
    padding:3px; 
 
    background: 
 
    linear-gradient(red,red) no-repeat top left, 
 
    linear-gradient(red,red) no-repeat top left, 
 
    linear-gradient(red,red) no-repeat bottom right, 
 
    linear-gradient(red,red) no-repeat bottom right, 
 
    linear-gradient(#333,#333) center no-repeat ; 
 
    background-size: 
 
    40% 3px, 
 
    3px 40%, 
 
    40% 3px, 
 
    3px 40%, 
 
    auto auto; 
 
    background-clip: 
 
    border-box, 
 
    border-box, 
 
    border-box, 
 
    border-box, 
 
    content-box; 
 
    
 
} 
 
div:nth-child(3):hover, div:nth-child(8):hover,div:nth-child(13):hover { 
 
    border:none; 
 
    padding:3px; 
 
    background: 
 
    linear-gradient(red,red) no-repeat top left, 
 
    linear-gradient(red,red) no-repeat top left, 
 
    linear-gradient(red,red) no-repeat bottom right, 
 
    linear-gradient(red,red) no-repeat bottom right, 
 
    linear-gradient(#333,#333) center no-repeat, 
 
    green ; 
 
    background-size: 
 
    40% 3px, 
 
    3px 40%, 
 
    40% 3px, 
 
    3px 40%, 
 
    auto auto; 
 
    background-clip: 
 
    border-box, 
 
    border-box, 
 
    border-box, 
 
    border-box, 
 
    content-box; 
 
    
 
} 
 

 
div { 
 
    width: 200px; 
 
    height:200px; 
 
    margin: 10px; 
 
    background: #333; 
 
    border: solid transparent; 
 
    box-sizing: border-box; 
 
    display:inline-flex; 
 
    vertical-align:middle; 
 
    flex-direction:column; 
 
    align-items:center; 
 
    justify-content:center; 
 
    text-align:center; 
 
    color:white; 
 
} 
 
hr~div { 
 
    border-radius:5px; 
 
} 
 
hr~hr~div { 
 
    border-radius:25px; 
 
} 
 
html { 
 
    background:gray; 
 
    text-align:center 
 
}
<div>red broken borders drawn via <code>shadow</code> 
 
</div> 
 
<div>red broken borders drawn via <code>linear&shy;-gradient</code> 
 
</div> 
 
<div>red broken borders drawn via multiple <code>linear&shy;-gradient</code> & <code>background&shy;-clip, background&shy;-size, background&shy;-position</code> 
 
</div> 
 
<hr/> 
 
<p>Can a small <code>border-radius</code> be applied ?</p> 
 
<div>red broken borders drawn via <code>shadow</code> 
 
</div> 
 
<div>red broken borders drawn via <code>linear&shy;-gradient</code> 
 
</div> 
 
<div>red broken borders drawn via multiple <code>linear&shy;-gradient</code> & <code>background&shy;-clip, background&shy;-size, background&shy;-position</code> 
 
</div> 
 
<hr/> 
 
<p>Can a big <code>border-radius</code> be applied ?</p> 
 
<div>red broken borders drawn via <code>shadow</code> 
 
</div> 
 
<div>red broken borders drawn via <code>linear&shy;-gradient</code> 
 
</div> 
 
<div>red broken borders drawn via multiple <code>linear&shy;-gradient</code> & <code>background&shy;-clip, background&shy;-size, background&shy;-position</code> 
 
</div>

Если вам действительно нужно исправить для большего радиуса, переупор BG-градиента и фона размера на третьем примере. См. 10-й дивизион в codepen, чтобы играть с;)

 Смежные вопросы

  • Нет связанных вопросов^_^