나는 초보자이며 이것에 잠시 고생하고 있습니다. 스크롤 div 안에 sIFR 3 텍스트가있는 jQuery Cycle Plugin을 사용하여 스크롤 div를 만들려고합니다. Firefox에서 제대로 작동하도록 할 수 있습니다. 어떤 제안이나 도움을 주시면 대단히 감사하겠습니다! http://dev.bandspecial.com/test.htmlsIFR 3은 jQuery Cycle Plugin과 호환됩니까?
jQuery를 :
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'scrollLeft',
cleartypeNoBg: true
});
});
또는 sIFR :
sIFR.replace(rockwell, {
selector: 'h1',
css: [ '.sIFR-root { color:#ffffff; }' ,'a { text-decoration: none }' ,'a:link { color: #E31824 }' ,'a:hover { color: #E31824 }' ], wmode: 'transparent'
});
바디 코드 : 여기
내 링크의<div id="slideshow">
<div> <img src="http://malsup.com/jquery/cycle/images/beach1.jpg" height="200" width="200">
<h1>St Andrews State Park - Panama City, FL</h1>
<p>This park is one of the most popular outdoor recreation spots in Florida. </p>
</div>
<div> <img src="http://malsup.com/jquery/cycle/images/beach2.jpg" height="200" width="200">
<h1>Located in the Florida panhandle,</h1>
<p> the 1,260 acre park is situated on a scenic peninsula and is well known for its sugar white sands and brilliant blue water. </p>
</div>
<div> <img src="http://malsup.com/jquery/cycle/images/beach3.jpg" height="200" width="200">
<h1>The ocean provides opportunity for endless fun. </h1>
<p>From boogie boarding to snorkeling to swimming and boating, there is always something to do.</p>
</div>
</div>
지금까지 어떤 코드가 있습니까? –
위의 코드와 링크를 추가했습니다. –