私は2つの子供(部分)を持っている進行状況バーがあります。これらの子どものそれぞれがぶらされるたびに、進歩とその子どもの全高が変わるでしょう。私はnext sibling selector
を使って最初の子供のために解決することができたが、私は2番目の子供(黄色の部分)のための解決策を見つけることができない。これまでjQueryを使って解決しましたが、私は純粋なCSSでこれをしたいと思います。CSSを選択前の兄弟
フィドル:https://jsfiddle.net/zfh263r6/5/
$('#start').on({
mouseenter: function() {
\t //$(this).css('height', '4px');
//$('progress').css('height', '4px');
},
mouseleave: function() {
\t //$(this).css('height', '');
// $('progress').css('height', '');
}
});
#progress_wrap {
position: relative;
height: 4px; /*max height of progress*/
background: #f3f3f3;
}
progress {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
width: 100%;
border:none;
height: 2px;
transition:all .25s ease-in;
cursor: pointer;
background-color: #fff;
position: absolute;
top: 0;
left: 0;
display: block;
}
progress:hover, progress:hover + #start {height: 4px}
progress[value] {
/* Reset the default appearance */
-webkit-appearance: none;
-moz-appearance: none;
\t appearance: none;
/* Get rid of default border in Firefox. */
border: none;
/* For IE10 */
color: #f8008c;
}
progress[value]::-webkit-progress-bar {
background-color: #fff;
border:none;
}
progress[value]::-webkit-progress-value {background:#f8008c}
progress::-ms-progress-value {background:#f8008c}
progress::-moz-progress-bar {background:#f8008c}
progress::-ms-fill {border: none}
#start {
height: 2px;
transition: all .25s ease-in;
cursor: pointer;
background-color: #ffe232;
position: absolute;
top: 0;
left: 0px;
width: 30px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="progress_wrap">
<progress min="0" max="1" value="0.66" id="progress"></progress>
<div id="start" style="display: inline-block; left: 50px;"></div>
</div>
CSSは、以前の兄弟を選択することはできません。 – undefined
CSSを使用してこれを達成する他の方法はありますか? @Vohuman –
私はそうは思わない。私が考えることができるのは、ホバーハイトを「進める」と「始める」ことです。それから、「progress_wrap」をオーバーフローさせます:隠れていて短く、ホバーで*展開します。 – Draco18s