jQuery仿新浪微博資訊展播效果
分享一個仿新浪微博的資訊展播效果,具有緩衝效果,當然外觀現在還不夠美觀,需要開發者執行再去完善。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>仿新浪微博資訊展播效果-螞蟻部落</title> <style type="text/css"> *{ margin:0px; padding:px; } .w_con { width:400px; height:160px; overflow:hidden; border:1px solid #333; margin:0px auto; margin-top:50px; } #w_slid { width:100%; list-style:none; } #w_slid li { width:100%; height:40px; } li.a { background:#ffc000; } li.b { background:#56aaff; } li.c { background:#0fffaa; } li.d { background:#0ffffa; } li.e { background:#ffff56; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> </head> <body> <div class="w_con" id="w_con"> <ul id="w_slid"> <li class="a"></li> <li class="b"></li> <li class="c"></li> <li class="d"></li> <li class="e"></li> </ul> </div> <script type="text/javascript"> function slide(){ var $w_slid=$('#w_con'); console.log($w_slid); var Timer; $w_slid.hover(function(){ clearInterval(Timer); },function(){ Timer = setInterval(function(){ slideFadeIn($w_slid); },3000); }).trigger("mouseleave"); } function slideFadeIn(obj){ var $self = obj.find('ul:first'); var $height = $self.find('li:first').height(); console.log($height); $self.animate({ 'marginTop':+$height+'px', },1200,function(){ $self.css({ marginTop:0}).find("li:first").appendTo($self); $self.find("li:first").hide(); $self.find("li:first").fadeIn("slow"); }); } $(function(){ slide(); }); </script> </body> </html>
相關文章
- 使用Scrapy抓取新浪微博使用者資訊
- 新浪微博分享不跳轉
- 新浪微博資料中心:2019微博電影白皮書(附下載)
- Python實現微博爬蟲,爬取新浪微博Python爬蟲
- 修改 support 包 TabLayout,實現新浪微博/即刻 APP 蚯蚓導航效果TabLayoutAPP
- 新浪微博&艾漫資料:2019明星白皮書
- 新浪微博API生成短連結API
- 轉發新浪微博程式猿心得
- 新浪微博私信,即時聊天介面研究
- PHP基於laravel框架獲取微博資料之一 模擬新浪微博登入PHPLaravel框架
- GitHub 上這款新浪微博爬蟲專案,讓你輕鬆掌握微博資料!Github爬蟲
- Flutter 仿微信/微博九宮格Flutter
- Python 超簡單爬取新浪微博資料 (高階版)Python
- 新浪微博app如何去喚起跳轉微信小程式APP微信小程式
- Scrapy框架的使用之Scrapy爬取新浪微博框架
- 新浪微博動態 RSA 分析圖文+登入
- Scrapy爬取新浪微博移動版使用者首頁第一條微博
- 仿微博訊息中心的系統設計與實現
- Android 自定義圓形旋轉進度條,仿微博頭像載入效果Android
- jQuery的ztree仿windows檔案新建和拖拽效果jQueryWindows
- Android仿微信文章懸浮窗效果Android
- jquery焦點圖效果視訊jQuery
- 如何建立一個新浪微博應用以及獲得Access token
- JB的Python之旅-爬蟲篇-新浪微博內容爬取Python爬蟲
- Jquery實現微博分享評論表情特效jQuery特效
- Android 動畫實戰-仿微博雷達功能Android動畫
- 新浪微博移動網頁端手勢驗證介面破解流程網頁
- vue 網頁版聊天系統|仿微信、微博網頁端Vue網頁
- Android 高仿騰訊新聞視訊切換效果Android
- Python網路爬蟲2 - 爬取新浪微博使用者圖片Python爬蟲
- Android 第三方登入之新浪微博授權登入Android
- 解決新浪微博圖床 403 批次下載圖片等資源(以 MMChat 資料集為例)圖床
- jQuery 效果方法jQuery
- 新浪遊戲微壇遊戲
- 騰訊短連結url生成介面/騰訊短網址線上生成/新浪微博短連結生成器的分享
- 仿金山打字效果
- Node.js-Koa2框架生態實戰-從零模擬新浪微博Node.js框架
- nuxt.js仿微信App通訊聊天|vue+nuxt聊天|仿微信介面UXJSAPPVue
- jQuery基礎 效果jQuery