php图⽚⾃适应缩放,两种实现WordPress⽂章内容图⽚⾃适应
⼤⼩缩放的⽅法
摘要:关于wordpress主题开发中⽂章图⽚⾃适应的问题已经是⽼⽣常谈了,今天⼤挖总结的三种⽅法给⼤家,希望能帮助⼤家解决⼿...
关于wordpress主题开发中⽂章图⽚⾃适应的问题已经是⽼⽣常谈了,今天⼤挖总结的三种⽅法给⼤家,希望能帮助⼤家解决⼿头的问题,其它也没有什么创新的⽅法,还是css与jquery的解决⽅法。
推荐⽅法:运⽤⽤官⽅默认CSS样式
将以下代码复制粘贴到主题style.css⽂件内即可
强制最⼤化宽度为600px,⾼度为相对⾼度,通过以上设置不失为⼀个最佳的解决⽅案
p img {
max-width:600px;
width: expression(this.width > 600 ? “600px” : true);
height:auto;
}
1
2
3
4
5
pimg{
max-width:600px;
width:expression(this.width>600?“600px”:true);
height:auto;
}
通过jQuery库来实现图⽚⾃适应
⾸先我们要加载jquer库,然后以下⾯的代码添加到wordpress主题中的header.php⽂件中。
可以对图⽚进⾏⾃动缩放,⽅法较为完美。
$(document).ready(function(){
$('div').autoResize({height:750});
});
jQuery.fn.autoResize = function(options)
{
var opts = {
'width' : 700,
'height': 750
var opt = $.extend(true, {},opts,options || {});
width = opt.width;
height = opt.height;
$('img',this).each(function(){
var image = new Image();
image.src = $(this).attr('src');  if(image.width > 0 && image.height > 0 ){ var image_rate = 1;
if( (width / image.width) < (height / image.height)){
image_rate = width / image.width ;
}else{
image_rate = height / image.height ;
}
if ( image_rate <= 1){
$(this).width(image.width * image_rate);
$(this).height(image.height * image_rate);
}
}
});
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
16
17
18
19
20
21
22
23
24
25
26
27
28
$(document).ready(function(){
$('div').autoResize({height:750});
});
jquery在线图片jQuery.fn.autoResize=function(options)
{
varopts={
'width':700,
'height':750
}
varopt=$.extend(true,{},opts,options||{});
width=opt.width;
height=opt.height;
$('img',this).each(function(){
varimage=newImage();
image.src=$(this).attr('src');  if(image.width > 0 && image.height > 0 ){ varimage_rate=1;
if((width/image.width)
image_rate=width/image.width;
}else{
image_rate=height/image.height;
if(image_rate<=1){
$(this).width(image.width *image_rate);
$(this).height(image.height *image_rate);
}
}
});
}
这两种⽅法可以说都通过各⾃的⽅式达到了我们想要的效果,同时⼤挖还是推荐第⼀种,因为第⼆种对于不了解代码的同学,操作成本还是⽐较⼤的。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。