一个支持任意尺寸的图片上下左右滑动效果


Posted in Javascript onAugust 24, 2014

常常遇到图片通过后台上传后就变形了的问题,如果你的网站风格适合,可以用这种方式来给页面布局,支持任意尺寸的图片滑动(上下左右滑动)

<! DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>任意尺寸的图片滑动</title>
<style>
div { margin: 0 auto; overflow: hidden;}
.main { width: 1000px;}
.divimg_div1 { width: 380px; float: left;}
.divimg .div4_title { width: 380px; height: 103px; background-color: #EDB205; color: #FFF; font-family: "微软雅黑"; font-size: 22px; font-weight: bold; line-height: 90px; text-align: center; letter-spacing: 5px;}
.divimg_img1 { width: 380px; height: 414px; margin-top: 5px; background-color: #FFF; position: relative;}
.divimg_div2 { width: 615px; float: right;}
.divimg_img2 { width: 194px; height: 256px; float: left; background-color: #FFF; position: relative;}
.divimg_img3 { width: 417px; height: 256px; float: right; background-color: #FFF; position: relative;}
.divimg_img4 { width: 366px; height: 262px; float: left; margin-top: 4px; background-color: #FFF; position: relative;}
.divimg_img5 { width: 245px; height: 262px; float: right; margin-top: 4px; background-color: #FFF; position: relative;}
.divimg .gif { position: absolute; left: 50%; top: 50%; margin-left: -50px; margin-top: -50px; z-index: 2;}
.divimg .img { position: absolute; z-index: 1; left: 0; top: 0; display: none;}
</style>
<script src="js/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function(e) {
$(".divimg .img").load(function(){
var w=parseInt($(this).width());
var h=parseInt($(this).height());
var hh=$(this).parent().height();
var ww=$(this).parent().width();
var blw=w/parseInt(ww);
var blh=h/parseInt(hh);
function left(){
$(this).animate({left:-(parseInt(parseInt(hh)/h*w)-(parseInt(ww)))},10000,right)
}
function right(){
$(this).animate({left:0},10000,left);
}
function top(){
$(this).animate({top:-(parseInt(parseInt(ww)/w*h)-(parseInt(hh)))},10000,bottom);
}
function bottom(){
$(this).animate({top:0},10000,top);
}
if(blw > blh)
{
$(this).height(hh).width(parseInt(parseInt(hh)/h*w));
$(this).prev().hide(); 
$(this).css({"z-index":"3","display":"block"}); 
$(this).animate({left:-(parseInt(parseInt(hh)/h*w)-(parseInt(ww)))},10000,right);
}
else if(blw < blh)
{
$(this).height(parseInt(parseInt(ww)/w*h)).width(ww);
$(this).prev().hide();
$(this).css({"z-index":"3","display":"block"});
$(this).animate({top:-(parseInt(parseInt(ww)/w*h)-(parseInt(hh)))},10000,bottom);
}
});
$(".div4 .img").each(function(index, element) {
$(this).attr("src",$(this).attr("name"));
});
}); 
</script>
</head>
<body>
<div class="main">
<div class="divimg">
<div class="divimg_div1">
<div class="divimg_title">任意尺寸的图片滑动</div>
<div class="divimg_img1"> <img class="gif" src="images/loadding.gif" width="100" height="100" /> <img class="img" name="images/am_bigimg01.jpg" src="" /> </div>
</div>
<div class="divimg_div2">
<div class="divimg_img2"> <img class="gif" src="images/loadding.gif" width="100" height="100" /> <img class="img" name="images/am_nyimg01.jpg" src="" /> </div>
<div class="divimg_img3"> <img class="gif" src="images/loadding.gif" width="100" height="100" /> <img class="img" name="images/am_img02.jpg" src="" /> </div>
<div class="divimg_img4"> <img class="gif" src="images/loadding.gif" width="100" height="100" /> <img class="img" name="images/am_newimg01.jpg" src="" /> </div>
<div class="divimg_img5"> <img class="gif" src="images/loadding.gif" width="100" height="100" /> <img class="img" name="images/am_rynewimg03.jpg" src="" /> </div>
</div>
</div>
</div>
</body>
</html>
Javascript 相关文章推荐
扩展easyui.datagrid,添加数据loading遮罩效果代码
Nov 02 Javascript
Javascript 自适应高度的Tab选项卡
Apr 05 Javascript
各种页面定时跳转(倒计时跳转)代码总结
Oct 24 Javascript
jquery.hotkeys监听键盘按下事件keydown插件
May 11 Javascript
Grunt入门教程(自动任务运行器)
Aug 06 Javascript
JavaScript中的Reflect对象详解(ES6新特性)
Jul 22 Javascript
jQuery zTree树插件简单使用教程
Jan 10 Javascript
Vue.js如何优雅的进行form validation
Apr 07 Javascript
详解如何在webpack中做预渲染降低首屏空白时间
Aug 22 Javascript
node创建Vue项目步骤详解
Mar 06 Javascript
Vue页面跳转传递参数及接收方式
Sep 09 Javascript
解决antd datepicker 获取时间默认少8个小时的问题
Oct 29 Javascript
jquery 取子节点及当前节点属性值的方法
Aug 24 #Javascript
在JS数组特定索引处指定位置插入元素的技巧
Aug 24 #Javascript
js获取checkbox复选框选中的选项实例
Aug 24 #Javascript
jQuery异步加载数据并添加事件示例
Aug 24 #Javascript
Jquery通过JSON字符串创建JSON对象
Aug 24 #Javascript
Jquery中扩展方法extend使用技巧
Aug 24 #Javascript
jquery使用$(element).is()来判断获取的tagName
Aug 24 #Javascript
You might like
基于PHP与XML的PDF文档生成技术
2006/10/09 PHP
Thinkphp中的curd应用实用要点
2015/01/04 PHP
php实现curl模拟ftp上传的方法
2015/07/29 PHP
php实现的Curl封装类Curl.class.php用法实例分析
2015/09/25 PHP
JS+PHP实现用户输入数字后显示最大的值及所在位置
2017/06/19 PHP
PHP文件上传小程序 适合初学者学习!
2019/05/23 PHP
(转载)JavaScript中匿名函数,函数直接量和闭包
2007/05/08 Javascript
js window.event对象详尽解析
2009/02/17 Javascript
jquery ajax 检测用户注册时用户名是否存在
2009/11/03 Javascript
JS控制显示隐藏兼容问题(IE6、IE7、IE8)
2010/04/01 Javascript
JS中图片缓冲loading技术的实例代码
2013/08/29 Javascript
js网页右下角提示框实例
2014/10/14 Javascript
jQuery简单实现彩色云标签效果示例
2016/08/01 Javascript
BootStrap table使用方法分析
2016/11/08 Javascript
微信小程序 loading 详解及实例代码
2016/11/09 Javascript
jQuery-mobile事件监听与用法详解
2016/11/23 Javascript
详谈js中window.location.search的用法和作用
2017/02/13 Javascript
JavaScript格式化json和xml的方法示例
2019/01/22 Javascript
JavaScript函数式编程(Functional Programming)纯函数用法分析
2019/05/22 Javascript
JavaScript中BOM对象原理与用法分析
2019/07/09 Javascript
使用layui+ajax实现简单的菜单权限管理及排序的方法
2019/09/10 Javascript
使用JavaScript获取Django模板指定键值数据
2020/05/27 Javascript
Python学习教程之常用的内置函数大全
2017/07/14 Python
python实现自动登录
2018/09/17 Python
django 实现编写控制登录和访问权限控制的中间件方法
2019/01/15 Python
python实现图片彩色转化为素描
2019/01/15 Python
总结python中pass的作用
2019/02/27 Python
处理python中多线程与多进程中的数据共享问题
2019/07/28 Python
通过实例学习Python Excel操作
2020/01/06 Python
浅谈keras 模型用于预测时的注意事项
2020/06/27 Python
大学校务公开实施方案
2014/03/31 职场文书
细节决定成败演讲稿
2014/05/12 职场文书
机械操作工岗位职责
2014/08/08 职场文书
同意迁入证明模板
2014/10/26 职场文书
表扬稿表扬信的格式及范文
2019/06/24 职场文书
golang 实现并发求和
2021/05/08 Golang