>  기사  >  웹 프론트엔드  >  매일 날씨를 보고하기 위해 jQuery를 사용하여 Tencent Weibo의 슬라이드 아웃 효과를 모방하는 방법

매일 날씨를 보고하기 위해 jQuery를 사용하여 Tencent Weibo의 슬라이드 아웃 효과를 모방하는 방법

PHPz
PHPz원래의
2016-05-16 15:59:581144검색

이 글에서는 주로 Tencent Weibo의 슬라이드 아웃 효과를 모방하여 매일 날씨를 보고하는 jQuery의 방법을 소개하며, jQuery 마우스 이벤트와 CSS 스타일 조작 기술이 필요한 친구들이 참고할 수 있습니다.

이 글은 다음과 같습니다. Tencent Weibo 슬라이드 아웃 효과를 위한 일일 날씨 코드입니다. 마우스를 올려놓으면 서랍을 여는 것처럼 날씨 콘텐츠가 왼쪽에서 오른쪽으로 슬라이드됩니다. 물론 이 코드는 필수적입니다. 이 기능을 구현하려면 버전 1.6.2 jQuery 플러그인을 사용하세요.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>仿腾讯微博的每日天气效果</title>
<style type="text/css">
.weather{
 width:500px;height:100px;margin:0 auto;
 position:relative;color:#fff;text-align:center;
 overflow:hidden;
}
.weather_main{
 width:99px;border-right:solid 1px #fff;
 float:left;background:#F03;text-align:center;
 position:relative;z-index:2;
}
.weather_main strong{
 line-height:100px;
}
.weather_main strong a{
 border-bottom:solid 2px #fff;cursor:pointer;
}
.alert{
 width:400px;height:100px;position:absolute;
 left:-400px;top:0;background:#F03;
}
</style>
<script src="jquery-1.6.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
 $(document).ready(function(){
  $(".weather_main").hover(function(){
   $(".alert").animate({left:"100px"},1000);
   return false;
  },function(){
   $(".alert").animate({left:"-400px"},1000);
   return false;
   })
 })
</script>
</head>
<body>
 <p class="weather">
  <p class="weather_main">
   <strong><a>深圳</a></strong>
  </p><!--weather_main-->
  <p class="alert">
   <p>如果云知道,多想凉风来做伴~</p>
 <p><a>提醒好友</a></p>
  </p>
 </p><!--weather box-->
</body>
</html>

【관련 튜토리얼 추천】

1. JavaScript 동영상 튜토리얼
JavaScript 온라인 매뉴얼
3. 부트스트랩 튜토리얼

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.