私はこのテキストを回転させようとしていますが、私が試したことに関係なく、動作しません。どんな助けもありがとう。クリック時に回転するテキストを取得できません
HTML:
<div class="list">
<div class="listItem">Ash Gray<p>+</p></div>
<div class="listItem"></div>
<div class="listItem"></div>
<div class="listItem"></div>
<div class="listItem"></div>
</div>
CSS:
.listItem {
width: calc(100% - 60\5px);
height: 53px;
padding: 1px;
margin-left: 60px;
margin-bottom: 5px;
background-color: #9265DC;
font-size: 1.5em;
text-align: left;
line-height: 55px;
color: #fff;
border: 1px solid #9265DC;
border-radius: 5px;
text-decoration: none;
}
.listItem p {
float: right;
line-height: 10px;
text-align: right;
margin-right: 10px;
font-weight: bolder;
}
.rotate {
-webkit-transform:rotate(45deg);
transform-origin: center;
}
Javascriptを:
<script>
$(function(){
$(".listItem").click(function(){
$(".listItem p").toggleClass("rotate");
});
});
</script>
http://codepen.io/sol_b/pen/qRzrNq - あなたはjQueryのを含めた、私のために働くように見えますか? – sol