0
我想在沒有選擇任何內容或懸停時隱藏圖像,並在懸停或選擇按鈕時顯示圖像。圖像是功能,所以我不能把它作爲背景圖像。將鼠標懸停在按鈕上時顯示圖像
我想也許有可見性:隱藏和可見性:顯示在懸停和選定的可能是工作,但我還沒有成功。
沒有jQuery或JavaScript,也許只是與CSS可能。
input[type="checkbox"]:focus + label {
background-color:#16bdcf;
}
#template:hover , #template:focus #template.selected{
background-color:#16bdcf;
}
#template.selected{
/* background-color:red; */
color: #fff;
}
#template:hover * , #template:focus * {
background-color:#16bdcf;
color: #fff;
}
#template > h3 > input[type="checkbox"] {
margin: 0px 10px 0px 0px;
}
#template {
width: 100%;
}
<li ng-repeat="contactlist in contactlists | filter:query" class="ng-scope" style="">
<button id="template" ng-click="open(contactlist)">
<h5 class="ng-binding">2 days ago</h5>
<h3 class="ng-binding"><input type="checkbox">name</h3>
<span><img class="swhite" src="images/Share_white.png"></span>
<span ng-click="deleteContactList(contactlist)"><img class="twhite" src="images/Trash_white.png"></span>
<p class="ng-binding">5 CONTACTS</p>
</button>
</li>
*我想也許有可視性:隱藏和可見性:顯示在懸停和選定可能是工作,但我還沒有成功。*。可見性沒有'display'的值,它是'visibility:visible;'。 –
「圖像是功能,...」??? – connexo
似乎正在使用Angular'ng-click'指令。但這與他的問題或問題無關。 –