div鼠标悬停,子元素上移,鼠标移出,子元素下移动画。

HTML:

              <div class="edt_title" >
                            <div id="edt_title">
                                <p class="edt_title_top">e定投</p>
                                <div class="product_line"></div>
                                <p class="edt_title_c">
                                多种期限<br /><br />稳健收益
                                </p>
                                <p class="edt_title_top" style="margin-top: 60px;">e定投</p>
                                <div class="product_line"></div>
                                <p class="edt_title_c">
                                多种期限<br /><br />稳健收益
                                </p>
                                <div class="product_more">
                                    查看全部
                                </div>
                            </div>
                        </div>

css:

.edt_title{
    height: 200px;
    width: 150px;
    margin: 200px auto;
    text-align: center;
    overflow:hidden;/* 溢出部分不显示 */
}

#edt_title{
    position: relative;/* 子元素设置relative */
}

js

               $("#edt_title").mouseover(function(){
			  	$(this).stop().animate({bottom:‘200px‘},800);
			  });
			  $("#edt_title").mouseout(function(){
			  	$(this).stop().animate({bottom:‘0px‘},800);
			  });

stop()事件用来阻止动画一直运行。

时间: 2024-10-03 05:18:14

div鼠标悬停,子元素上移,鼠标移出,子元素下移动画。的相关文章

用WPF实现在ListView中的鼠标悬停Tooltip显示

原文:用WPF实现在ListView中的鼠标悬停Tooltip显示 一.具体需求描述 在WPF下实现,当鼠标悬停在ListView中的某一元素的时候能弹出一个ToolTip以显示需要的信息. 二.代码实现 在.XMAL文件中 Code<Window.Resources> <DataTemplate x:Key="dataTemplateCheckBox"> <StackPanel Orientation="Horizontal">

鼠标悬停为子div添加class

<!-- author:IluckySi since:20150331 功能:一个父div下面有多个子div,如何实现鼠标悬停到子div上面,子div添加class. --> <!DOCTYPE html> <html> <head> <title>mouse.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,ke

selenium webdriver + junit 鼠标悬停,出现另一个元素,点击这个元素的解决方法

转载自http://blog.csdn.net/hcx1234567/article/details/17605533 经千辛万苦,终于解决了 UI TA(test automation) 中的这个难题,必须记录一下. 前提是:需要测试的这个页面是用 google 的 angularjs 写的.许多页面效果是用 angularjs 自带的一些事件结合 css hover实现的.测试的 UI TA 框架用的是 selenium webdriver + junit . 问题是:页面上有一个效果:点击

div css鼠标悬停锚文本超链接文字背景颜色或图片变化

div css鼠标悬停锚文本超链接文字背景颜色或图片变化(体感音乐) css鼠标悬停超链接文字上时背景改变,鼠标经过文字链接时(悬停),文字的背景图片发生改变(出现背景图片或背景颜色). 鼠标经过悬停在超链接文字上时背景颜色或背景图片出现或改变教程篇.(体感音乐) 此DIV CSS布局技巧其实是对a标签做鼠标经过CSS样式.利用以下代码: a{...} 原始超链接默认样式设置a:hover{...}鼠标悬停经过时超链接锚文本CSS样式(扩展阅读:ie6 hover)一.链接文字无背景鼠标经过悬停

Selenium3+python3--如何定位鼠标悬停才显示的元素

follow yoyo 定位鼠标悬停才显示的元素,要引入新模块 # coding:utf-8from selenium import webdriverfrom selenium.webdriver.common.action_chains import ActionChains driver = webdriver.Firefox()driver.get("http://www.baidu.com")# 定位百度页面上鼠标悬停设置按钮mouse = driver.find_eleme

鼠标悬停相关操作

css相关操作: 常用场景: 1. 给盒子加阴影 .operater-item:hover { box-shadow: 0 3px 7px 0 rgba(174, 174, 174, 0.5); } 2. 悬停显示文字 <div title="悬停显示的说明文字">悬停显示文字</div> 3. 悬停显示隐藏的子元素盒子 即hover同样可以对子元素进行样式操作 <div class="operater-item"> <di

鼠标悬停图片移动的效果

当前很多购物网站,像京东,蘑菇街这些都有对展示的图片做这种鼠标悬停图片上移,下移,左移或者右移效果, 实现代码很简单,就用css3的transform便可实现. 下列代码实现的是鼠标悬停,div向上移动30px,鼠标拿开div恢复原始位置. css: <style> div{ margin-top: 100px; width: 100px; height: 100px; background: pink; transition:All 0.4s ease-in-out;//让移动效果变得平滑自

CSS鼠标悬停图片加边框效果,不位移的方法

<!DOCTYPE HTML> <html lang="en-US"> <head> <title>css实现鼠标悬停时图片加边框效果</title> <style type="text/css"> body{background:#222;color:#06c;} em{ font-style:inherit;} img{background:white;margin:0 5px;width:

table中td超出内容隐藏,鼠标悬停全部显示(完整版,含js代码)

一.CSS语法: text-overflow:clip | ellipsis 默认值:clip 适用于:所有元素 clip: 当对象内文本溢出时不显示省略标记(...),而是将溢出的部分裁切掉. ellipsis: 当对象内文本溢出时显示省略标记(...). 在使用的时候,有时候发现不会出现省略标记效果,经过测试发现,使用ellipsis的时候,必须配合overflow:hidden; white-space:nowrap; width:50%;这三个样式共同使用才会有效果 实例: table

jquery实现鼠标悬停显示大图(个人随笔)

HTML代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>鼠标悬停图片放大</title> <link type="text/css" rel="stylesheet" href="stye/style.css"/> <script type="tex