广东馅料泵
- 点击次数:
- 发布日期:2022/10/15
- 规格:
- 类型:
-
- 在线询价
型号 Type | 排量 Capacity (L/r) | 标准流量 Flow (m3/h) | 功率 Power (kw) | 转数 Rotation speed (r/min) | 标准口径 Inlet&outlet (mm) |
15LF12-0.6A | 0.04 | 0.6 | 0.25-1.5 | 10-720 | 10 |
25LF12-2A | 0.15 | 2 | 0.25-2.2 | 10-721 | 25 |
40LF12-5A | 0.32 | 5 | 0.37-3.0 | 10-500 | 40 |
50LF12-10A | 0.65 | 10 | 1.5-7.5 | 10-500 | 50 |
60LF12-15A | 1.1 | 15 | 2.2-11 | 10-500 | 65 |
65LF12-20A | 1.74 | 20 | 2.2-15 | 10-500 | 65 |
75LF12-30A | 2.6 | 30 | 3.0-22 | 10-500 | 80 |
80LF12-40A | 3.65 | 40 | 4.0-30 | 10-500 | 80 |
100LF12-60A | 5.2 | 60 | 5.5-45 | 10-500 | 100 |
125LF12-80A | 6.8 | 80 | 7.5-55 | 10-500 | 125 |
140LF12-120A | 9.8 | 120 | 11-90 | 10-400 | 150 |
150LF12-150A | 12.8 | 150 | 15-160 | 10-400 | 150 |
200LF12-200A | 16 | 200 | 18.5-185 | 10-300 | 200 |
300LF12-300A | 24 | 300 | 22-185 | 10-270 | 300 |
本文网址:http://www.ah-ly.com/product/582.html
pt>
var abc=0; //图片标识
var img_num=$(".img_ul").children("li").length; //图片个数
$(".img_ul li").hide(); //初始化图片
play();
$(function(){
$(".img_hd ul").css("width",($(".img_hd ul li").width())*img_num+60); //设置ul的长度 //这里需要修改
$(".bottom_a").css("opacity",0.7); //初始化底部a透明度
//$("#play").css("height",$("#play .img_ul").height());
if (!window.XMLHttpRequest) {//对ie6设置a的位置
$(".change_a").css("height",$(".change_a").parent().height());}
$(".change_a").focus( function() { this.blur(); } );
$(".bottom_a").hover(function(){//底部a经过事件
$(this).css("opacity",1);
},function(){
$(this).css("opacity",0.7);
});
$(".change_a").hover(function(){//箭头显示事件
$(this).children("span").show();
},function(){
$(this).children("span").hide();
});
$(".img_hd ul li").click(function(){
abc=$(this).index();
play();
});
$(".prev_a").click(function(){
//i+=img_num;
abc--;
//i=i%img_num;
abc=(abc<0?0:abc);
play();
});
$(".next_a").click(function(){
abc++;
//i=i%img_num;
abc=(abc>(img_num-1)?(img_num-1):abc);
play();
});
});
function play(){//动画移动
var img=new Image(); //图片预加载
img.onload=function(){img_load(img,$(".img_ul").children("li").eq(abc).find("img"))};
img.src=$(".img_ul").children("li").eq(abc).find("img").attr("src");
//$(".img_ul").children("li").eq(i).find("img").(img_load($(".img_ul").children("li").eq(i).find("img"))); $(".img_hd ul").children("li").eq(abc).addClass("on").siblings().removeClass("on");
if(img_num>4){//大于7个的时候进行移动 //这里需要修改
if(abc
=img_num-1){//后3个
$(".img_hd ul").animate({"marginLeft":(-($(".img_hd ul li").outerWidth()+2)*(img_num-4))}); //这里需要修改
}
}
if (!window.XMLHttpRequest) {//对ie6设置a的位置
$(".change_a").css("height",$(".change_a").parent().height());}
}
function img_load(img_id,now_imgid){//大图片加载设置 (img_id 新建的img,now_imgid当前图片)
if(img_id.width/img_id.height>1)
{
if(img_id.width >=$(".img").width()){}
}
else
{
//if(img_id.height>=500) $(now_imgid).height(500);
} $(".img_ul").children("li").eq(abc).show().siblings("li").hide(); //大小确定后进行显示
}
function imgs_load(img_id){//小图片加载设置
if(img_id.width >=$(".img_hd ul li").width())
{img_id.width = 50};
}
if($('.img_hd ul li').length <=1){
$('.img_hd').css('display','none');
}