播放记录

5.0 |05月18日 |更新至第13集 |共65集
简介:
许多朋友都对儿时收看的动画片《猫和老鼠》无比怀念,在网上搜索到的大多是米高梅版的《猫和老鼠》,片中的猫及老鼠都比我们儿时在央视观看的大一号。留在80后最美好记忆中的猫和老鼠动画片实际是这部Tom and Jerry Kids show.由美国福克斯电视台1990年9月8日首播,1993年8月2日停播,共65集。每集三个故事,除了猫和老鼠外还穿插有肚皮和肚饱的父子狗对战麦克老狼的故事。这部Tom and Jerry Kids show 相比以前的猫和老鼠版本减少了暴力镜头,人物之间趋向于使用各种物品巧妙对战,猫和老鼠的形象也有改变,他们更加卡通,个头变小,更像是两个小孩。
猜你喜欢
换一换
天才麻将少女:阿知贺篇
440
10.0
已完结
天才麻将少女:阿知贺篇
10.0
更新时间:05月19日
主演:悠木碧,东山奈央,花泽香菜,樱井真子,内山夕实,进藤尚美,小清水亚美,植田佳奈,伊藤静,白石凉子,钉宫理惠,中原麻衣,斋贺光希,斋藤千和,清水香里,丰口惠美,小仓唯,石原夏织,能登有沙,松永真穗,岩岛雅奈未,三泽纱千香,久川绫,新井里美,高本惠,巽悠衣子,鹿野优以,大龟明日香,中岛爱,本多真梨子,山口理惠,真堂圭,广田诗梦,森优子,高森奈津美,原纱友里,斋藤桃子,桑谷夏子,小林优,新谷良子,七泽心,福原香织,茅原实里,清水爱,甲斐田裕子,大桥步夕,永田依子,小野大辅,堀江由衣,森永理科,神崎千露,三宅麻理
简介:在今年的6月中旬,《天才麻将少女》同时公布了TV动画新企划以及外传漫画连载开始的两项重大消息。然而,已经过去了3个月的时间,一直就没再有TV新企划的相关消息放出。  如今,在新一期《天才麻将少女》的四格漫画上,侧边写着:次号将会有天才麻将少女新TV企划的重大发表哦!制作阵容、声优阵容公布?播出日期公布?详细故事内容公布?还是有什么样的新情报等待着我们呢?让我们一同期待10月7日本作次号的发售吧!
3130
2012
天才麻将少女:阿知贺篇
主演:悠木碧,东山奈央,花泽香菜,樱井真子,内山夕实,进藤尚美,小清水亚美,植田佳奈,伊藤静,白石凉子,钉宫理惠,中原麻衣,斋贺光希,斋藤千和,清水香里,丰口惠美,小仓唯,石原夏织,能登有沙,松永真穗,岩岛雅奈未,三泽纱千香,久川绫,新井里美,高本惠,巽悠衣子,鹿野优以,大龟明日香,中岛爱,本多真梨子,山口理惠,真堂圭,广田诗梦,森优子,高森奈津美,原纱友里,斋藤桃子,桑谷夏子,小林优,新谷良子,七泽心,福原香织,茅原实里,清水爱,甲斐田裕子,大桥步夕,永田依子,小野大辅,堀江由衣,森永理科,神崎千露,三宅麻理
评论区
首页
电影
连续剧
动漫
综艺记录
短剧

每1天弹出一次

重要通知

线路一 https://8ju.xin

线路二 https://8ju.top

◆防止迷路请记住我们发布页地址:baju.app

$(document).ready(function() { var player = $('.MacPlayer'); var playerContainer = player.closest('#PlayerVideoArea'); var originalPosition = playerContainer.offset().top; var isFloating = false; var scrollTimeout; var isDragging = false; var startX, startY, offsetX, offsetY; // 创建关闭按钮 var closeBtn = $('
'); // 创建拖动按钮 var dragBtn = $('
'); // 只在滚动停止时检测 $(window).scroll(function() { clearTimeout(scrollTimeout); scrollTimeout = setTimeout(function() { var scrollTop = $(window).scrollTop(); if (!isFloating && scrollTop > originalPosition + 300) { // 进入悬浮状态 enterFloatingMode(); } else if (isFloating && scrollTop <= originalPosition) { // 恢复原始状态 exitFloatingMode(); } }, 100); }); // 进入悬浮模式 function enterFloatingMode() { if(isFloating) return; // 保存原始位置和尺寸 playerContainer.data('original-style', { position: playerContainer.css('position'), top: playerContainer.css('top'), left: playerContainer.css('left'), width: playerContainer.css('width'), height: playerContainer.css('height'), margin: playerContainer.css('margin') }); playerContainer.addClass('floating-player'); playerContainer.append(closeBtn); playerContainer.append(dragBtn); isFloating = true; // 添加拖动功能 setupDrag(); // 滚动到原始位置 closeBtn.on('click', function() { $('html, body').animate({ scrollTop: originalPosition - 50 }, 300, function() { exitFloatingMode(); }); }); } // 退出悬浮模式 function exitFloatingMode() { if(!isFloating) return; // 恢复原始样式 var originalStyle = playerContainer.data('original-style'); playerContainer.removeClass('floating-player'); playerContainer.css({ position: originalStyle.position, top: originalStyle.top, left: originalStyle.left, width: originalStyle.width, height: originalStyle.height, margin: originalStyle.margin }); // 移除拖动事件 dragBtn.off('mousedown touchstart'); $(document).off('mousemove touchmove'); $(document).off('mouseup touchend'); closeBtn.off('click').remove(); dragBtn.remove(); isFloating = false; isDragging = false; } // 设置拖动功能 function setupDrag() { dragBtn.on('mousedown touchstart', function(e) { isDragging = true; // 获取初始位置 var containerOffset = playerContainer.offset(); offsetX = containerOffset.left; offsetY = containerOffset.top; // 获取鼠标/触摸初始位置 var clientX = e.type === 'touchstart' ? e.originalEvent.touches[0].clientX : e.clientX; var clientY = e.type === 'touchstart' ? e.originalEvent.touches[0].clientY : e.clientY; startX = clientX - offsetX; startY = clientY - offsetY; // 阻止默认行为和冒泡 e.preventDefault(); e.stopPropagation(); // 添加拖动时的类 playerContainer.addClass('dragging'); }); $(document).on('mousemove touchmove', function(e) { if (!isDragging) return; var clientX = e.type === 'touchmove' ? e.originalEvent.touches[0].clientX : e.clientX; var clientY = e.type === 'touchmove' ? e.originalEvent.touches[0].clientY : e.clientY; // 计算新位置 var newLeft = clientX - startX; var newTop = clientY - startY; // 限制在窗口范围内 var windowWidth = $(window).width(); var windowHeight = $(window).height(); var containerWidth = playerContainer.outerWidth(); var containerHeight = playerContainer.outerHeight(); newLeft = Math.max(0, Math.min(newLeft, windowWidth - containerWidth)); newTop = Math.max(0, Math.min(newTop, windowHeight - containerHeight)); // 应用新位置 playerContainer.css({ left: newLeft + 'px', top: newTop + 'px', right: 'auto', bottom: 'auto' }); e.preventDefault(); e.stopPropagation(); }); $(document).on('mouseup touchend', function() { if (isDragging) { isDragging = false; playerContainer.removeClass('dragging'); } }); } // 窗口大小变化时重新计算 $(window).resize(function() { if (!isFloating) { originalPosition = playerContainer.offset().top; } else { // 如果正在悬浮,确保播放器保持在可视范围内 var containerWidth = playerContainer.outerWidth(); var containerHeight = playerContainer.outerHeight(); var windowWidth = $(window).width(); var windowHeight = $(window).height(); var currentLeft = parseInt(playerContainer.css('left')); var currentTop = parseInt(playerContainer.css('top')); var newLeft = Math.max(0, Math.min(currentLeft, windowWidth - containerWidth)); var newTop = Math.max(0, Math.min(currentTop, windowHeight - containerHeight)); playerContainer.css({ left: newLeft + 'px', top: newTop + 'px' }); } }); }); -->