jquery 기반 콘 텐 츠 순환 스크롤 모듈(시 나 웨 이 보 로그 인 하지 않 은 홈 페이지 스크롤 웨 이 보 디 스 플레이 참조)
<div class="messagewrap">
<ul>
<li><!-- li, --></li>
</ul>
<div class="bottomcover">
<!-- w3c , -->
</div>
</div>
CSS
.messagewrap{overflow:hidden;position:relative;width:500px;height:300px}
li{height:50px;}
.bottomcover{width:500px;height:45px;position:absolute;bottom:0;left:0;
pointer-events:none;background:url(halftransp.png) left bottom no-repeat;
/* */ _display:none;/* IE6 */}
JS
<script>
$(function(){
msgmove();
$("ul").hover(function(){
$(this).attr("name","hovered"); // ul name "hovered"
},function(){
$(this).removeAttr("name");
});
});
function msgmove(){
var isIE=!!window.ActiveXObject;
var isIE6=isIE&&!window.XMLHttpRequest;
if($("ul").attr("name") != "hovered"){
// ul name "hovered", , 。
var height = $("li:last").height();
if(isIE6){
// IE6,jQuery animate opacity IE6 ,
// ie6 。
$("li:last").css({"height":0});
}else{
$("li:last").css({"opacity":0,"height":0});
// li 0
}
$("li:first").before($("li:last"));
// li ,
$("li:first").animate({"height":height},300);
// li li
if(!isIE6){
$("li:first").animate({"opacity":"1"},300);
// IE6
}
}
setTimeout("msgmove()",5000);
// 5
}
</script>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
안 드 로 이 드 무한 순환 스크롤 실현하 나 는 count 를 Integer.MAX 로 설정 한 다음 index 에 따라 실제 수량 을 추출 하 는 것 입 니 다. 하 나 는 시작 부분 에 end 를 추가 하고 끝 에 start 를 추가 하 는 것 이다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.