runxinzhi.com
首页
百度搜索
Jq公告渐隐弹出
animate弹出后,调用out函数消失。
<!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> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <style> *{margin:0;padding:0;font-size:12px;} input{120px;height:30px;cursor:pointer;} #note{position:absolute;400px;padding:20px;background:#eee;border:1px solid #ccc;left:40%;z-index:9999;display:none;} </style> <script> $(function(){ $('input').click(function(){ if(!$('#note').is(':visible')){ $('#note').css({display:'block', top:'-100px'}).animate({top: '+100'}, 500, function(){ setTimeout(out, 3000); }); } }); }); function out(){ $('#note').animate({top:'0'}, 500, function(){ $(this).css({display:'none', top:'-100px'}); }); } </script> </head> <body> <div id="note"><a href="http://jikey.cnblogs.com" target="_blank">豪情</a></div> <input type="button" value="点我,30s后消失" /> </body> </html>
运行代码
相关阅读:
Postman安装与使用
最新的爬虫工具requests-html
从高级测试到测试开发
uiautomator2 使用Python测试 Android应用
zalenium 应用
Docker Selenium
Java 测试驱动开发--“井字游戏” 游戏实战
DevOps/TestOps概念
Android测试(四):Instrumented 单元测试
appium对博客园APP进行自动化测试
原文地址:https://www.cnblogs.com/jikey/p/1745044.html
最新文章
UVA 303 Pipe
行列转换之列不固定
Groovy中Closure的this到底指向谁?
CentOS快速安装最新版本的SaltStack
hdu 3336 Count the string
ORA-00600: [kck_rls_check must use (11,0,0,0,0) or lower] 故障解决
3I工作室的成员在2013年(第6届)中国大学生计算机设计大赛总决赛中荣获全国二等奖
CXF发布restful WebService的入门例子(客户端)
CXF发布restful WebService的入门例子(服务器端)
java处理日期时间
热门文章
Java中分割字符串
J2EE学习中一些值得研究的开源项(转)
eclipse调试总结(转)
eclipse常用插件安装
java命令行HPROF Profiler
Java heap dump触发和分析(转)
MySQL类型转换
使用“数据驱动测试”之前应该知道的
Selenium自动化测试之学会元素定位
UI Automator 常用 API 整理
Copyright © 2020-2023
润新知