私は、クライアントのWebサイトの広告を作成するために使用したフォームがほとんどありません。ユーザーが最初のフォームに記入するまで、他のリンクを無効にするにはどうすればよいですか?私のイメージを見てください。複数のステップを含む申し込みフォーム?
私のhtmlコード
<div class="col-md-12">
<div class="col-md-4">
<div class="post-new-ad-link">
<a href="#">Post free ad</a>
</div>
<div class="other-links">
<ul>
<li>
<a href="#">
<i class="fa fa-pencil-square-o fa-lg fa-fw" aria-hidden="true"></i> Basic details</a>
</li>
<li>
<a href="#">
<i class="fa fa-camera fa-lg fa-fw" aria-hidden="true"></i> Images</a>
</li>
<li>
<a href="#">
<i class="fa fa-money fa-lg fa-fw" aria-hidden="true"></i> Price</a>
</li>
<li>
<a href="#">
<i class="fa fa-map-marker fa-lg fa-fw" aria-hidden="true"></i> Location</a>
</li>
<li>
<a href="#">
<i class="fa fa-info-circle fa-lg fa-fw" aria-hidden="true"></i> Contact and status</a>
</li>
</ul>
</div>
</div>
CSS
.post-new-ad-link {
border-left: 1px solid #e0e0e0;
border-right: 1px solid #e0e0e0;
border-top: 1px solid #e0e0e0;
border-bottom: 0;
font-size: 1.7rem;
text-align: center;
background: #53bff7;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.post-new-ad-link a {
transition: all 0.5s ease;
color: #fff;
display: block;
padding: 50px;
}
.other-links {
border-left: 1px solid #e0e0e0;
border-right: 1px solid #e0e0e0;
border-top: 0;
border-bottom: 1px solid #e0e0e0;
background: #fff;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.other-links ul {
list-style-type: none;
padding: 0;
}
.other-links li {
font-size: 1.5rem;
}
.other-links li a {
padding: 15px 0 15px 20px;
display: block;
color: #666666;
transition: all 0.5s ease;
}
.other-links li a:hover {
text-decoration: none;
background:#ddd;
}
はどれjqueryのオプションやその他の一つですか?
あなたのjsはどこですか? – Logeshwaran
あなたが役に立ったら私の答えを受け入れることができます –