HTML 頁面彈出一個圖片 自動消失
阿新 • • 發佈:2019-01-05
HTML 頁面彈出一個圖片 自動消失
適用於網站首頁的提示 比如購物網站提示送積分等
首先需要一個放置圖片的容器
<img src="#" class="jump_img">
隨後 需要給這個類一個樣式
<style type="text/css"> .jump_img {position:absolute; z-index:99999; width:80%; height:80%; top:50%; left:50%; margin:-20% 0 0 -40%; } </style> //根據 寬 高 上 左 來除錯圖片顯示的位置
最後 就剩下能夠驅動這個容器的指令碼了
<script type="text/javascript">
$(document).ready(function() {
//倒計時消失 使用 毫秒值
$(".jump_img").delay(5000).fadeOut();
})
</script>
簡單的一個定時彈圖片就好了 我的解析度是1920的 筆記本 其他的請自己除錯比例
直接在img標籤上新增點選事件
如果不想用a來包一層的話,那麼直接在img標籤上新增onclick來點選跳轉,
<img src="img/logo.png" alt="" onclick="window.open('index.html')" style="cursor: pointer;"/>
jQuery 效果 - fadeOut() 方法
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$ ("p").fadeOut()
});
$(".btn2").click(function(){
$("p").fadeIn();
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<button class="btn1">Hide</button>
<button class="btn2">Show</button>
</body>
</html>