detailsを2つ用意してsummaryにそれぞれ別の画像を設定したいと考えてます
下記コードでは、できませんでした
どのように書いたら別々の画像を設定することができますでしょうか?
詳しい方教えていただけないでしょうか?
ダメだった書き方コード
summary:parent1:before { content: url("親1用の画像"); width: 16px; height: 16px; background-color: deepskyblue; } summary:parent2:before { content: url("親2用の画像"); width: 16px; height: 16px; background-color: deepskyblue; }
html
1 2 3<details style="width:15%;height:50px;float:left"> 4<summary style="height:100%" class="parent1">親1</summary><!-- この部分の画像を個々に設定したい --> 5<div class="details-content" style="height:100%;width:100%"> 6<div style="width:100%;height:1000%;background-color:red"> 7 8<details style="width:100%;height:100px"> 9<summary style="height:100%">子1</summary> 10hello 11</details> 12 13</div></div> 14</details> 15 16 17<details style="width:15%;height:50px;float:left"> 18<summary style="height:100%" class="parent2">親2</summary><!-- この部分の画像を個々に設定したい --> 19<div class="details-content" style="height:100%;width:100%"> 20<div style="width:100%;height:1000%;background-color:red"> 21 22<details style="width:100%;height:100px"> 23<summary style="height:100%">子2</summary> 24hello 25</details> 26 27</div></div> 28</details> 29
CSS
1<style> 2body,html { 3 height:100%; 4} 5summary { 6 position: relative; 7 display: block; /* 矢印を消す */ 8 padding: 10px 10px 10px 30px; /* アイコンの余白を開ける */ 9 cursor: pointer; /* カーソルをポインターに */ 10 font-weight: bold; 11 background-color: green; 12 transition: 0.2s; 13} 14summary:hover { 15 background-color: skyblue; 16} 17summary::-webkit-details-marker { 18 display: none; /* 矢印を消す */ 19} 20 21/* 疑似要素でアイコンを表示 */ 22summary:before, 23summary:after { 24 content: ""; 25 margin: auto 0 auto 10px; 26 position: absolute; 27 top: 0; 28 bottom: 0; 29 left: 0; 30} 31summary:before { 32 content: url("親1用の画像"); 33 width: 16px; 34 height: 16px; 35 background-color: deepskyblue; 36} 37summary:after { 38 left: 6px; 39 width: 5px; 40 height: 5px; 41 border: 4px solid transparent; 42 border-left: 5px solid white; 43 box-sizing: border-box; 44 transition: .1s; 45} 46 47/* オープン時のスタイル */ 48details[open] > summary { 49 background-color: yellow; 50} 51details[open] > summary:after { 52 transform: rotate(90deg); /* アイコンを回転 */ 53 left: 4px; /* 位置を調整 */ 54 top: 5px; /* 位置を調整 */ 55} 56 57/* アニメーション */ 58details[open] .details-content { 59 animation: fadeIn 0.5s ease; 60} 61@keyframes fadeIn { 62 0% { 63 opacity: 0; 64 transform: translateY(-10px); 65 } 66 100% { 67 opacity: 1; 68 transform: none; 69 } 70} 71</style>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。