ホームページに表示する証言のセレクションを紹介したいと考えています。一度に 1 つの紹介文のみを表示したい。これは、ページの更新時にランダム化される予定です。
推薦状には、引用、著者、および著者の写真が必要です。プラグインを使用する前にランダムな証言を得ることができましたが、顔を引用にリンクする写真を用意するというアイデアが気に入っています.
私がやりたいことの静的バージョンを作成しました。
<div id="right_sidebar">
<div class="testimonials">
<div class="ref-picture"></div>
<blockquote>
<cite><p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eget vestibulum elit. Cras pretium, dui sed egestas elementum, augue eros mattis erat, quis porta diam urna vitae lacus.</p>
</cite>
<div class="author">Paul Scholes - Manchester United</div>
</blockquote>
</div>
</div>
CSS:
.testimonials {
width: 218px;
padding: 0px;
margin: 0px;
font-family: "adelle",serif;
margin-top: 13px;
padding-top: 10px;
position: relative;
}
.ref-picture {
width: 100px;
height: 100px;
border-radius: 75px;
background: url('images/testimonial1.jpg') no-repeat;
position: absolute;
top: 0px;
left: 59px;
margin: 0 auto;
padding: 0;
z-index: 2;
}
.testimonials .author {
padding: 10px;
padding-top: 0px;
font-family: "adelle",serif;
color: #dedede!important;
font-size: 11px;
border: 0px;
}
.testimonials blockquote {
font-size: 18px;
line-height: 24px;
font-family: Lato;
font-style: normal;
font-weight: lighter;
color: #333;
padding: 0px;
margin-top: 5px;
background: black;
position: relative;
top: 50px;
}
.testimonials blockquote cite {
font-size: 11px;
}
.testimonials blockquote cite p {
line-height: 16px!important;
padding: 70px 10px 20px 10px;
color: white;
}
まず、これは実行可能でしょうか?もしそうなら、私がこれを行う方法について誰か提案がありますか? 多分ある種のJQueryスクリプトですか?
前もって感謝します。