中文字幕二区_国产精品免费在线观看_黄色网站观看_人人草人人澡_日本真实娇小xxxx

您的位置: 首頁(yè) > 技術(shù)文檔 > 網(wǎng)頁(yè)制作 > JavaScript 圖片切割效果
不唐突的JavaScript的七條準(zhǔn)則 回到列表 連續(xù)字符自動(dòng)換行的解決方案
 JavaScript 圖片切割效果

作者:cloudgamer 時(shí)間: 2008-12-08 文檔類(lèi)型:原創(chuàng) 來(lái)自:藍(lán)色理想

第 1 頁(yè) JavaScript 圖片切割效果 [1]
第 2 頁(yè) JavaScript 圖片切割效果 [2]
第 3 頁(yè) JavaScript 圖片切割效果 [3]
第 4 頁(yè) JavaScript 圖片切割效果 [4]

這里貼出切割效果部分的代碼

var isIE = (document.all) ? true : false;
var $ = function (id) {
    return "string" == typeof id ? document.getElementById(id) : id;
};
var Class = {
    create: function() {
        return function() { this.initialize.apply(this, arguments); }
    }
}
var Extend = function(destination, source) {
    for (var property in source) {
        destination[property] = source[property];
    }
}
var Bind = function(object, fun) {
    return function() {
        return fun.apply(object, arguments);
    }
}
var BindAsEventListener = function(object, fun) {
    var args = Array.prototype.slice.call(arguments).slice(2);
    return function(event) {
        return fun.apply(object, [event || window.event].concat(args));
    }
}
var CurrentStyle = function(element){
    return element.currentStyle || document.defaultView.getComputedStyle(element, null);
}
function addEventHandler(oTarget, sEventType, fnHandler) {
    if (oTarget.addEventListener) {
        oTarget.addEventListener(sEventType, fnHandler, false);
    } else if (oTarget.attachEvent) {
        oTarget.attachEvent("on" + sEventType, fnHandler);
    } else {
        oTarget["on" + sEventType] = fnHandler;
    }
};
function removeEventHandler(oTarget, sEventType, fnHandler) {
    if (oTarget.removeEventListener) {
        oTarget.removeEventListener(sEventType, fnHandler, false);
    } else if (oTarget.detachEvent) {
        oTarget.detachEvent("on" + sEventType, fnHandler);
    } else {
        oTarget["on" + sEventType] = null;
    }
};
//圖片切割
var ImgCropper = Class.create();
ImgCropper.prototype = {
  //容器對(duì)象,控制層,圖片地址
  initialize: function(container, handle, url, options) {
    this._Container = $(container);//容器對(duì)象
    this._layHandle = $(handle);//控制層
    this.Url = url;//圖片地址
   
    this._layBase = this._Container.appendChild(document.createElement("img"));//底層
    this._layCropper = this._Container.appendChild(document.createElement("img"));//切割層
    this._layCropper.onload = Bind(this, this.SetPos);
    //用來(lái)設(shè)置大小
    this._tempImg = document.createElement("img");
    this._tempImg.onload = Bind(this, this.SetSize);
   
    this.SetOptions(options);
   
    this.Opacity = Math.round(this.options.Opacity);
    this.Color = this.options.Color;
    this.Scale = !!this.options.Scale;
    this.Ratio = Math.max(this.options.Ratio, 0);
    this.Width = Math.round(this.options.Width);
    this.Height = Math.round(this.options.Height);
   
    //設(shè)置預(yù)覽對(duì)象
    var oPreview = $(this.options.Preview);//預(yù)覽對(duì)象
    if(oPreview){
        oPreview.style.position = "relative";
        oPreview.style.overflow = "hidden";
        this.viewWidth = Math.round(this.options.viewWidth);
        this.viewHeight = Math.round(this.options.viewHeight);
        //預(yù)覽圖片對(duì)象
        this._view = oPreview.appendChild(document.createElement("img"));
        this._view.style.position = "absolute";
        this._view.onload = Bind(this, this.SetPreview);
    }
    //設(shè)置拖放
    this._drag = new Drag(this._layHandle, { Limit: true, onMove: Bind(this, this.SetPos), Transparent: true });
    //設(shè)置縮放
    this.Resize = !!this.options.Resize;
    if(this.Resize){
        var op = this.options, _resize = new Resize(this._layHandle, { Max: true, onResize: Bind(this, this.SetPos) });
        //設(shè)置縮放觸發(fā)對(duì)象
        op.RightDown && (_resize.Set(op.RightDown, "right-down"));
        op.LeftDown && (_resize.Set(op.LeftDown, "left-down"));
        op.RightUp && (_resize.Set(op.RightUp, "right-up"));
        op.LeftUp && (_resize.Set(op.LeftUp, "left-up"));
        op.Right && (_resize.Set(op.Right, "right"));
        op.Left && (_resize.Set(op.Left, "left"));
        op.Down && (_resize.Set(op.Down, "down"));
        op.Up && (_resize.Set(op.Up, "up"));
        //最小范圍限制
        this.Min = !!this.options.Min;
        this.minWidth = Math.round(this.options.minWidth);
        this.minHeight = Math.round(this.options.minHeight);
        //設(shè)置縮放對(duì)象
        this._resize = _resize;
    }
    //設(shè)置樣式
    this._Container.style.position = "relative";
    this._Container.style.overflow = "hidden";
    this._layHandle.style.zIndex = 200;
    this._layCropper.style.zIndex = 100;
    this._layBase.style.position = this._layCropper.style.position = "absolute";
    this._layBase.style.top = this._layBase.style.left = this._layCropper.style.top = this._layCropper.style.left = 0;//對(duì)齊
    //初始化設(shè)置
    this.Init();
  },
  //設(shè)置默認(rèn)屬性
  SetOptions: function(options) {
    this.options = {//默認(rèn)值
        Opacity:    50,//透明度(0到100)
        Color:        "",//背景色
        Width:        0,//圖片高度
        Height:        0,//圖片高度
        //縮放觸發(fā)對(duì)象
        Resize:        false,//是否設(shè)置縮放
        Right:        "",//右邊縮放對(duì)象
        Left:        "",//左邊縮放對(duì)象
        Up:            "",//上邊縮放對(duì)象
        Down:        "",//下邊縮放對(duì)象
        RightDown:    "",//右下縮放對(duì)象
        LeftDown:    "",//左下縮放對(duì)象
        RightUp:    "",//右上縮放對(duì)象
        LeftUp:        "",//左上縮放對(duì)象
        Min:        false,//是否最小寬高限制(為true時(shí)下面min參數(shù)有用)
        minWidth:    50,//最小寬度
        minHeight:    50,//最小高度
        Scale:        false,//是否按比例縮放
        Ratio:        0,//縮放比例(寬/高)
        //預(yù)覽對(duì)象設(shè)置
        Preview:    "",//預(yù)覽對(duì)象
        viewWidth:    0,//預(yù)覽寬度
        viewHeight:    0//預(yù)覽高度
    };
    Extend(this.options, options || {});
  },
  //初始化對(duì)象
  Init: function() {
    //設(shè)置背景色
    this.Color && (this._Container.style.backgroundColor = this.Color);
    //設(shè)置圖片
    this._tempImg.src = this._layBase.src = this._layCropper.src = this.Url;
    //設(shè)置透明
    if(isIE){
        this._layBase.style.filter = "alpha(opacity:" + this.Opacity + ")";
    } else {
        this._layBase.style.opacity = this.Opacity / 100;
    }
    //設(shè)置預(yù)覽對(duì)象
    this._view && (this._view.src = this.Url);
    //設(shè)置縮放
    if(this.Resize){
        with(this._resize){
            Scale = this.Scale; Ratio = this.Ratio; Min = this.Min; minWidth = this.minWidth; minHeight = this.minHeight;
        }
    }
  },
  //設(shè)置切割樣式
  SetPos: function() {
    var p = this.GetPos();
    //按拖放對(duì)象的參數(shù)進(jìn)行切割
    this._layCropper.style.clip = "rect(" + p.Top + "px " + (p.Left + p.Width) + "px " + (p.Top + p.Height) + "px " + p.Left + "px)";
    //設(shè)置預(yù)覽
    this.SetPreview();
  },
  //設(shè)置預(yù)覽效果
  SetPreview: function() {
    if(this._view){
        //預(yù)覽顯示的寬和高
        var p = this.GetPos(), s = this.GetSize(p.Width, p.Height, this.viewWidth, this.viewHeight), scale = s.Height / p.Height;
        //按比例設(shè)置參數(shù)
        var pHeight = this._layBase.height * scale, pWidth = this._layBase.width * scale, pTop = p.Top * scale, pLeft = p.Left * scale;
        //設(shè)置預(yù)覽對(duì)象
        with(this._view.style){
            //設(shè)置樣式
            width = pWidth + "px"; height = pHeight + "px"; top = - pTop + "px "; left = - pLeft + "px";
            //切割預(yù)覽圖
            clip = "rect(" + pTop + "px " + (pLeft + s.Width) + "px " + (pTop + s.Height) + "px " + pLeft + "px)";
        }
    }
  },
  //設(shè)置圖片大小
  SetSize: function() {
    var s = this.GetSize(this._tempImg.width, this._tempImg.height, this.Width, this.Height);
    //設(shè)置底圖和切割圖
    this._layBase.style.width = this._layCropper.style.width = s.Width + "px";
    this._layBase.style.height = this._layCropper.style.height = s.Height + "px";
    //設(shè)置拖放范圍
    this._drag.mxRight = s.Width; this._drag.mxBottom = s.Height;
    //設(shè)置縮放范圍
    if(this.Resize){ this._resize.mxRight = s.Width; this._resize.mxBottom = s.Height; }
  },
  //獲取當(dāng)前樣式
  GetPos: function() {
    with(this._layHandle){
        return { Top: offsetTop, Left: offsetLeft, Width: offsetWidth, Height: offsetHeight }
    }
  },
  //獲取尺寸
  GetSize: function(nowWidth, nowHeight, fixWidth, fixHeight) {
    var iWidth = nowWidth, iHeight = nowHeight, scale = iWidth / iHeight;
    //按比例設(shè)置
    if(fixHeight){ iWidth = (iHeight = fixHeight) * scale; }
    if(fixWidth && (!fixHeight || iWidth > fixWidth)){ iHeight = (iWidth = fixWidth) / scale; }
    //返回尺寸對(duì)象
    return { Width: iWidth, Height: iHeight }
  }
}

經(jīng)典論壇交流
http://bbs.blueidea.com/thread-2900687-1-1.html

本文鏈接:http://www.95time.cn/tech/web/2008/6317.asp 

出處:藍(lán)色理想
責(zé)任編輯:bluehearts

上一頁(yè) JavaScript 圖片切割效果 [3] 下一頁(yè)

◎進(jìn)入論壇網(wǎng)頁(yè)制作WEB標(biāo)準(zhǔn)化版塊參加討論,我還想發(fā)表評(píng)論。

相關(guān)文章 更多相關(guān)鏈接
不唐突的JavaScript的七條準(zhǔn)則
圓形光輝效果簡(jiǎn)明教程
超酷的金色組合
制作墻上文字效果簡(jiǎn)明教程
JavaScript 拖放效果分析
作者文章
JavaScript 拖放效果分析
關(guān)鍵字搜索 常規(guī)搜索 推薦文檔
熱門(mén)搜索:CSS Fireworks 設(shè)計(jì)比賽 網(wǎng)頁(yè)制作 web標(biāo)準(zhǔn) 用戶(hù)體驗(yàn) UE photoshop Dreamweaver Studio8 Flash 手繪 CG
站點(diǎn)最新 站點(diǎn)最新列表
周大!熬•自然”設(shè)計(jì)大賽開(kāi)啟
國(guó)際體驗(yàn)設(shè)計(jì)大會(huì)7月將在京舉行
中國(guó)國(guó)防科技信息中心標(biāo)志征集
云計(jì)算如何讓安全問(wèn)題可控
云計(jì)算是多數(shù)企業(yè)唯一擁抱互聯(lián)網(wǎng)的機(jī)會(huì)
阿里行云
云手機(jī)年終巨獻(xiàn),送禮標(biāo)配299起
阿里巴巴CTO王堅(jiān)的"云和互聯(lián)網(wǎng)觀"
1499元買(mǎi)真八核 云OS雙蛋大促
首屆COCO桌面手機(jī)主題設(shè)計(jì)大賽
欄目最新 欄目最新列表
淺談JavaScript編程語(yǔ)言的編碼規(guī)范
如何在illustrator中繪制臺(tái)歷
Ps簡(jiǎn)單繪制一個(gè)可愛(ài)的鉛筆圖標(biāo)
數(shù)據(jù)同步算法研究
用ps作簡(jiǎn)單的作品展示頁(yè)面
CSS定位機(jī)制之一:普通流
25個(gè)最佳最閃亮的Eclipse開(kāi)發(fā)項(xiàng)目
Illustrator中制作針線(xiàn)縫制文字效果
Photoshop制作印刷凹凸字體
VS2010中創(chuàng)建自定義SQL Rule
>> 分頁(yè) 首頁(yè) 前頁(yè) 后頁(yè) 尾頁(yè) 頁(yè)次:4/4頁(yè) 1個(gè)記錄/頁(yè) 轉(zhuǎn)到 頁(yè) 共4個(gè)記錄

藍(lán)色理想版權(quán)申明:除部分特別聲明不要轉(zhuǎn)載,或者授權(quán)我站獨(dú)家播發(fā)的文章外,大家可以自由轉(zhuǎn)載我站點(diǎn)的原創(chuàng)文章,但原作者和來(lái)自我站的鏈接必須保留(非我站原創(chuàng)的,按照原來(lái)自一節(jié),自行鏈接)。文章版權(quán)歸我站和作者共有。

轉(zhuǎn)載要求:轉(zhuǎn)載之圖片、文件,鏈接請(qǐng)不要盜鏈到本站,且不準(zhǔn)打上各自站點(diǎn)的水印,亦不能抹去我站點(diǎn)水印。

特別注意:本站所提供的攝影照片,插畫(huà),設(shè)計(jì)作品,如需使用,請(qǐng)與原作者聯(lián)系,版權(quán)歸原作者所有,文章若有侵犯作者版權(quán),請(qǐng)與我們聯(lián)系,我們將立即刪除修改。

您的評(píng)論
用戶(hù)名:  口令:
說(shuō)明:輸入正確的用戶(hù)名和密碼才能參與評(píng)論。如果您不是本站會(huì)員,你可以注冊(cè) 為本站會(huì)員。
注意:文章中的鏈接、內(nèi)容等需要修改的錯(cuò)誤,請(qǐng)用報(bào)告錯(cuò)誤,以利文檔及時(shí)修改。
不評(píng)分 1 2 3 4 5
注意:請(qǐng)不要在評(píng)論中含與內(nèi)容無(wú)關(guān)的廣告鏈接,違者封ID
請(qǐng)您注意:
·不良評(píng)論請(qǐng)用報(bào)告管理員,以利管理員及時(shí)刪除。
·尊重網(wǎng)上道德,遵守中華人民共和國(guó)的各項(xiàng)有關(guān)法律法規(guī)
·承擔(dān)一切因您的行為而直接或間接導(dǎo)致的民事或刑事法律責(zé)任
·本站評(píng)論管理人員有權(quán)保留或刪除其管轄評(píng)論中的任意內(nèi)容
·您在本站發(fā)表的作品,本站有權(quán)在網(wǎng)站內(nèi)轉(zhuǎn)載或引用
·參與本評(píng)論即表明您已經(jīng)閱讀并接受上述條款
推薦文檔 | 打印文檔 | 評(píng)論文檔 | 報(bào)告錯(cuò)誤  
專(zhuān)業(yè)書(shū)推薦 更多內(nèi)容
網(wǎng)站可用性測(cè)試及優(yōu)化指南
《寫(xiě)給大家看的色彩書(shū)1》
《跟我去香港》
眾妙之門(mén)—網(wǎng)站UI 設(shè)計(jì)之道
《Flex 4.0 RIA開(kāi)發(fā)寶典》
《贏在設(shè)計(jì)》
犀利開(kāi)發(fā)—jQuery內(nèi)核詳解與實(shí)踐
作品集 更多內(nèi)容

雜⑦雜⑧ Gold NORMANA V2