From 5eba675ece970053614a1b7d76ff00070470ec03 Mon Sep 17 00:00:00 2001 From: "Xingyu,Zhao" Date: Thu, 28 Aug 2014 17:36:20 +0800 Subject: [PATCH 1/3] fix rotate screen bug --- .gitignore | 5 +++-- README.md | 8 ++++---- dist/bundle.js | 49 +++++++++++++++++++++++++++++++++++++++---------- js/app.js | 8 ++++---- js/mslider.js | 41 +++++++++++++++++++++++++++++++++++------ 5 files changed, 85 insertions(+), 26 deletions(-) diff --git a/.gitignore b/.gitignore index 3dda3f7b..70b8aac5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules/ -.idea/ -public/*.js \ No newline at end of file +*.exe +*.sublime-* + diff --git a/README.md b/README.md index 5a877d93..2f323b13 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,10 @@ var slider = new MSlider({ TO-DO LIST ========== -* Keep li elements in 3 +* ~~Keep li elements in 3~~ * Enable verticle slider -* Add damping effect when meeting the edge of the list -* handle onorientationchange Event +* ~~Add damping effect when meeting the edge of the list~~ +* ~~handle onorientationchange Event~~ * Add image loader -* Add layer slider not just pic slider +* ~~Add layer slider not just pic slider~~ * Add callback functional like onBeforeSlide onAfterSlide onSlide diff --git a/dist/bundle.js b/dist/bundle.js index 7e355959..9f655265 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -9,9 +9,9 @@ var list = [{ width: 400, content: "imgs/2.jpg", },{ - height: 400, - width: 512, - content: "imgs/3.jpg", + height: 400, + width: 512, + content: "imgs/3.jpg", },{ height: 400, width: 512, @@ -42,7 +42,7 @@ new MSlider({ imgSubfix: ".jpg", layerContent: false, //or true default false - //autoPlay: true, + //autoPlay: 1000, //or false default false verticle: false, //loop: true, @@ -66,13 +66,13 @@ var getType = function (obj) { */ var MSlider = function (opts) { if (!opts.dom) { - throw "dom element can not be empty!"; + throw new Error("dom element can not be empty!"); } //节点 this.wrap = opts.dom; if ((!opts.data) || getType(opts.data) !== "[object Array]" || opts.data.length < 1) { - throw "data must be an array and must have more than one element!"; + throw new Error("data must be an array and must have more than one element!"); } //列表数据 @@ -164,7 +164,7 @@ _MP.init = function () { this.scaleW = window.innerWidth; this.initDomIndex(); this.damplingFunction = this.initDampingFunction(this.scaleW); - //this.initAutoPlay(); + this.initAutoPlay(); }; /* @@ -218,7 +218,7 @@ _MP.createLi = function (i) { if (this.layerContent) { li.innerHTML = '
' + item.content + '
'; } else { - if (item.height / item.width > this.radio) { + if (item.height / item.width > this.ratio) { li.innerHTML = ''; } else { li.innerHTML = ''; @@ -237,7 +237,7 @@ _MP.reUseLi = function (li,negOrPosOne) { if (this.layerContent) { li.innerHTML = '
' + item.content + '
'; } else { - if (item.height / item.width > this.radio) { + if (item.height / item.width > this.ratio) { li.innerHTML = ''; } else { li.innerHTML = ''; @@ -305,6 +305,7 @@ _MP.goIndex = function (n) { tmp = domIndexArr[0] - 1; tmp = tmp < 0 ? listLength - 1 : tmp; domIndexArr.unshift(tmp); + domIndexArr.length = 3; this.domIndexArrHash.unshift(null); tmp = this.domIndexArrHash[3]; this.domIndexArrHash.length = 3; @@ -322,7 +323,8 @@ _MP.goIndex = function (n) { } } - console.log(domIndexArrHash); + console.log(domIndexArr); + console.log(this.idx); //console.log(domIndexArrLength); for (var i = 0; i < domIndexArrHash.length; i++) { if (i===noTransitionTimeId) { @@ -394,9 +396,36 @@ _MP.bindDOM = function () { } } }; + + var resizeHandler = function () { + self.ratio = window.innerHeight / window.innerWidth; + self.scaleW = window.innerWidth; + self.wrap.style.height = window.innerHeight + 'px'; + self.outer.style.width = self.scaleW + 'px'; + var domIndexArrHash = self.domIndexArrHash; + var domIndexArr = self.domIndexArr; + for (var i = domIndexArrHash.length - 1; i >= 0; i--) { + domIndexArrHash[i].style.width = self.scaleW + 'px'; + domIndexArrHash[i].style.webkitTransition = '-webkit-transform 0s ease-out'; + domIndexArrHash[i].style.webkitTransform = 'translate3d(' + (i-self.idx) * self.scaleW + 'px, 0, 0)'; + if (self.layerContent === true) continue; + var img = domIndexArrHash[i].childNodes[0]; + var imgData = self.data[domIndexArr[i]]; + console.log((imgData.height /imgData.width) + " "+ self.ratio); + if ((imgData.height /imgData.width) > self.ratio) { + img.height = window.innerHeight; + img.removeAttribute("width"); + } else { + img.width = self.scaleW; + img.removeAttribute("height"); + } + + } + }; outer.addEventListener('touchstart', startHandler); outer.addEventListener('touchmove', moveHandler); outer.addEventListener('touchend', endHandler); + window.addEventListener('resize', resizeHandler); }; module.exports = MSlider; diff --git a/js/app.js b/js/app.js index 3c892e82..01140f65 100644 --- a/js/app.js +++ b/js/app.js @@ -8,9 +8,9 @@ var list = [{ width: 400, content: "imgs/2.jpg", },{ - height: 400, - width: 512, - content: "imgs/3.jpg", + height: 400, + width: 512, + content: "imgs/3.jpg", },{ height: 400, width: 512, @@ -41,7 +41,7 @@ new MSlider({ imgSubfix: ".jpg", layerContent: false, //or true default false - //autoPlay: true, + //autoPlay: 1000, //or false default false verticle: false, //loop: true, diff --git a/js/mslider.js b/js/mslider.js index b13ed5bd..d0723b10 100644 --- a/js/mslider.js +++ b/js/mslider.js @@ -6,13 +6,13 @@ var getType = function (obj) { */ var MSlider = function (opts) { if (!opts.dom) { - throw "dom element can not be empty!"; + throw new Error("dom element can not be empty!"); } //节点 this.wrap = opts.dom; if ((!opts.data) || getType(opts.data) !== "[object Array]" || opts.data.length < 1) { - throw "data must be an array and must have more than one element!"; + throw new Error("data must be an array and must have more than one element!"); } //列表数据 @@ -104,7 +104,7 @@ _MP.init = function () { this.scaleW = window.innerWidth; this.initDomIndex(); this.damplingFunction = this.initDampingFunction(this.scaleW); - //this.initAutoPlay(); + this.initAutoPlay(); }; /* @@ -158,7 +158,7 @@ _MP.createLi = function (i) { if (this.layerContent) { li.innerHTML = '
' + item.content + '
'; } else { - if (item.height / item.width > this.radio) { + if (item.height / item.width > this.ratio) { li.innerHTML = ''; } else { li.innerHTML = ''; @@ -177,7 +177,7 @@ _MP.reUseLi = function (li,negOrPosOne) { if (this.layerContent) { li.innerHTML = '
' + item.content + '
'; } else { - if (item.height / item.width > this.radio) { + if (item.height / item.width > this.ratio) { li.innerHTML = ''; } else { li.innerHTML = ''; @@ -245,6 +245,7 @@ _MP.goIndex = function (n) { tmp = domIndexArr[0] - 1; tmp = tmp < 0 ? listLength - 1 : tmp; domIndexArr.unshift(tmp); + domIndexArr.length = 3; this.domIndexArrHash.unshift(null); tmp = this.domIndexArrHash[3]; this.domIndexArrHash.length = 3; @@ -262,7 +263,8 @@ _MP.goIndex = function (n) { } } - console.log(domIndexArrHash); + console.log(domIndexArr); + console.log(this.idx); //console.log(domIndexArrLength); for (var i = 0; i < domIndexArrHash.length; i++) { if (i===noTransitionTimeId) { @@ -334,8 +336,35 @@ _MP.bindDOM = function () { } } }; + + var resizeHandler = function () { + self.ratio = window.innerHeight / window.innerWidth; + self.scaleW = window.innerWidth; + self.wrap.style.height = window.innerHeight + 'px'; + self.outer.style.width = self.scaleW + 'px'; + var domIndexArrHash = self.domIndexArrHash; + var domIndexArr = self.domIndexArr; + for (var i = domIndexArrHash.length - 1; i >= 0; i--) { + domIndexArrHash[i].style.width = self.scaleW + 'px'; + domIndexArrHash[i].style.webkitTransition = '-webkit-transform 0s ease-out'; + domIndexArrHash[i].style.webkitTransform = 'translate3d(' + (i-self.idx) * self.scaleW + 'px, 0, 0)'; + if (self.layerContent === true) continue; + var img = domIndexArrHash[i].childNodes[0]; + var imgData = self.data[domIndexArr[i]]; + console.log((imgData.height /imgData.width) + " "+ self.ratio); + if ((imgData.height /imgData.width) > self.ratio) { + img.height = window.innerHeight; + img.removeAttribute("width"); + } else { + img.width = self.scaleW; + img.removeAttribute("height"); + } + + } + }; outer.addEventListener('touchstart', startHandler); outer.addEventListener('touchmove', moveHandler); outer.addEventListener('touchend', endHandler); + window.addEventListener('resize', resizeHandler); }; module.exports = MSlider; From ef72d13c5b03d7f4bb87e306bfd0295213afa970 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=98=9F=E5=AE=87?= Date: Thu, 28 Aug 2014 17:37:25 +0800 Subject: [PATCH 2/3] Delete MSlider.sublime-project --- MSlider.sublime-project | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 MSlider.sublime-project diff --git a/MSlider.sublime-project b/MSlider.sublime-project deleted file mode 100644 index 21eabf62..00000000 --- a/MSlider.sublime-project +++ /dev/null @@ -1,8 +0,0 @@ -{ - "folders": - [ - { - "path": "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider" - } - ] -} From c61e71109c5eb0953ca18e69832d23c658999008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=98=9F=E5=AE=87?= Date: Thu, 28 Aug 2014 17:39:02 +0800 Subject: [PATCH 3/3] Delete MSlider.sublime-workspace --- MSlider.sublime-workspace | 949 -------------------------------------- 1 file changed, 949 deletions(-) delete mode 100644 MSlider.sublime-workspace diff --git a/MSlider.sublime-workspace b/MSlider.sublime-workspace deleted file mode 100644 index 5eb1da08..00000000 --- a/MSlider.sublime-workspace +++ /dev/null @@ -1,949 +0,0 @@ -{ - "auto_complete": - { - "selected_items": - [ - [ - "domI", - "domIndexArr" - ], - [ - "ng", - "negOrPosOne" - ], - [ - "len", - "length" - ], - [ - "dom", - "domIndexArrHash" - ], - [ - "initD", - "initDampingFunction" - ], - [ - "pro", - "prototype" - ], - [ - "one", - "oneEightOfFull" - ], - [ - "fi", - "firstAction" - ], - [ - "mar", - "margin-left" - ], - [ - "p", - "prototype" - ], - [ - "wr", - "wrap" - ], - [ - "or", - "origin-height" - ], - [ - "wra", - "wrap" - ], - [ - "se", - "sections" - ], - [ - "pad", - "padding-bottom" - ], - [ - "now", - "nowHeight" - ], - [ - "ma", - "max-width" - ], - [ - "org", - "origin-height" - ], - [ - "orgin", - "origin-width" - ], - [ - "wind", - "windowHeight" - ], - [ - "ori", - "origin-height" - ], - [ - "ra", - "ratioSmall" - ], - [ - "ratio", - "ratioHeight" - ], - [ - "v", - "vertical-align" - ], - [ - "m", - "margin-bottom" - ], - [ - "fon", - "font-size" - ], - [ - "cl", - "clearTimeout" - ], - [ - "mon", - "month" - ], - [ - "city", - "cityName" - ], - [ - "pup", - "popUpLocation" - ], - [ - "introFourClou", - "introFourCloudTwo" - ], - [ - "introFourCLou", - "introFourCloudOne" - ], - [ - "clean", - "clearIntroFourInFinishAnimation" - ], - [ - "introFourCloud", - "introFourCloudThree" - ], - [ - "introFourTree", - "introFourTreeSix" - ], - [ - "introFourBuild", - "introFourBuildingFour" - ], - [ - "introFourCloudT", - "introFourCloudTwo" - ], - [ - "introFourBild", - "introFourBuildingOne" - ], - [ - "ani", - "animation" - ], - [ - "setI", - "setIntroFourInOpacity" - ], - [ - "con", - "console" - ], - [ - "clear", - "clearCssAnimation" - ], - [ - "intro-three-ne", - "intro-three-net-popup" - ], - [ - "inTroThreeCl", - "introThreeCloudTwo" - ], - [ - "introThreeE", - "introThreeEarthOutLine" - ], - [ - "introThreeF", - "introThreeFrameTwo" - ], - [ - "clea", - "clearCssAnimation" - ], - [ - "on", - "oneOrZero" - ], - [ - "for", - "for for (…) {…} (Improved Native For-Loop)" - ], - [ - "re", - "removeClass" - ], - [ - "font", - "font-size" - ], - [ - "ru", - "running" - ], - [ - "changeImage", - "changeImageToLeft" - ], - [ - "change", - "changeImageToRight" - ], - [ - "las", - "lastImage" - ], - [ - "last", - "lastImage" - ], - [ - "ce", - "content" - ], - [ - "auto", - "autoChangeTimeOut" - ], - [ - "tran", - "translate" - ], - [ - "introTwoCom", - "introTwoComputerSelectorString" - ], - [ - "introTwoBu", - "introTwoBuildingTwo" - ], - [ - "introTwoOutl", - "introTwoEarthOutlineSelectorString" - ], - [ - "introTwoEar", - "introTwoEarthOutline" - ], - [ - "introTwoE", - "introTwoEarthSelectorString" - ], - [ - "intro-two-clou", - "intro-two-cloud-one" - ], - [ - "introTwo", - "introTwoBatman" - ], - [ - "sli", - "slideUpContainer" - ], - [ - "intro", - "introContainerSelecotrStirng" - ], - [ - "out-", - "out-rotate-out" - ], - [ - "rotate", - "out-rotate-out" - ], - [ - "f", - "font" - ], - [ - "te", - "text-align" - ], - [ - "padd", - "padding" - ], - [ - "introFourBuilding", - "introFourBuildingOne" - ], - [ - "fo", - "forwards" - ], - [ - "introThr", - "introThirdGroup" - ], - [ - "wi", - "width" - ], - [ - "win", - "window1" - ], - [ - "window", - "window1" - ], - [ - "html", - "htmlFileName" - ], - [ - "action", - "actionSequence" - ], - [ - "exit", - "exitActionSequence" - ], - [ - "introOneE", - "introOneEarth" - ], - [ - "introT", - "introTwoGroup" - ], - [ - "intro-two", - "intro-two-building-two" - ], - [ - "introOneSun", - "introOneSunSelectorString" - ], - [ - "introOneStar", - "introOneStarsSelectorString" - ], - [ - "introOneSub", - "introOneSubTitleSelectorString" - ], - [ - "introOneS", - "introOneSupermanOne" - ], - [ - "introOneSuper", - "introOneSupermanOneSelectorString" - ], - [ - "introOneEr", - "introOneEarchSelectorString" - ], - [ - "introOne", - "introOneGroup" - ], - [ - "introTwoG", - "introTwoGroupSelectorString" - ], - [ - "en", - "enterSecoundSequence" - ], - [ - "lea", - "linear" - ], - [ - "in", - "infinite" - ], - [ - "intro-two-b", - "intro-two-building-three" - ], - [ - "time", - "timeoutArr" - ], - [ - "ini", - "initActions" - ], - [ - "inde", - "index" - ], - [ - "de", - "deltaY" - ], - [ - "fun", - "function" - ], - [ - "exi", - "exitActionSequence" - ], - [ - "bod", - "bodySelectorString" - ], - [ - "bo", - "bottomBar" - ], - [ - "image", - "imageUrls" - ], - [ - "c", - "callback" - ], - [ - "url", - "urls" - ], - [ - "mo", - "mousewheel" - ], - [ - "dar", - "darkAndLast" - ], - [ - "border-rad", - "border-radius-bottom" - ], - [ - "co", - "color" - ], - [ - "text", - "text-decoration" - ], - [ - "margin", - "margin-right" - ], - [ - "li", - "list-style" - ], - [ - "monthNu", - "monthNumberString" - ], - [ - "monNum", - "monthNumberString" - ], - [ - "teachIn", - "teachIn" - ], - [ - "teach", - "teachInTimeLine" - ], - [ - "renderTime", - "renderTimeLineItemItem" - ], - [ - "teac", - "teachInTimeLine" - ], - [ - "chang", - "changeCity" - ], - [ - "ch", - "changeCityEventBind" - ], - [ - "tecIN", - "teachInTimeLine" - ], - [ - "bor", - "border-bottom-color" - ], - [ - "rend", - "renderCityName" - ], - [ - "inlin", - "inline-block" - ], - [ - "arrow", - "arrow-down" - ] - ] - }, - "buffers": - [ - ], - "build_system": "", - "command_palette": - { - "height": 392.0, - "selected_items": - [ - [ - ":w", - ":w - Save" - ], - [ - ":sw", - "HTML: Wrap Selection With Tag" - ], - [ - "pac", - "Package Control: Install Package" - ] - ], - "width": 416.0 - }, - "console": - { - "height": 125.0 - }, - "distraction_free": - { - "menu_visible": true, - "show_minimap": false, - "show_open_files": false, - "show_tabs": false, - "side_bar_visible": false, - "status_bar_visible": false - }, - "file_history": - [ - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/index.html", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/js/app.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/gulpfile.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/js/MSlider.js", - "/C/Users/zhaoxingyu01/Desktop/words-my.dic", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/js/MSlider.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/index.html", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/js/mSlider.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/less/common.less", - "/C/Users/zhaoxingyu01/Documents/GitHub/test/js/actionSequence.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/test/js/action.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/js/app.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/test/js/app.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/gulpfile.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/intro.html", - "/C/Users/zhaoxingyu01/Documents/GitHub/test/index.html", - "/C/Users/zhaoxingyu01/Documents/GitHub/test/less/common.less", - "/C/Users/zhaoxingyu01/Documents/GitHub/showCaseText/less/common.less", - "/C/Users/zhaoxingyu01/Documents/GitHub/test/gulpfile.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/showCaseText/common.css", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/js/resize.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/js/mSlider.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/js/config.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/package.json", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/README.md", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/package.json", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/.gitignore", - "/C/Users/zhaoxingyu01/Documents/GitHub/MSlider/.gitignore", - "/C/Users/zhaoxingyu01/IdeaProjects/hrMobile/README.md", - "/D/hrBaidu20140722/hrBaidu/data/beijing.json", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/slideUp.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/index.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/positionBrowsing.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/teachInTimeLine.js", - "/D/gitProjects/spider/package.json", - "/D/gitProjects/spider/index.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/actionSequence.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/data/beijing.json.bak", - "/C/Users/zhaoxingyu01/Desktop/test2.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/intro.js", - "/D/新建文件夹 (2)/页面.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/.gitignore", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/README.md", - "/C/Users/zhaoxingyu01/Desktop/test.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/styles/common.less", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/styles/common.css", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/styles/common-debug.css", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/action.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/TimeScheduleController/action.js", - "/C/Users/zhaoxingyu01/Documents/GitHub/TimeScheduleController/actionSequence.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/application.js", - "/D/gitProjects/lunbo/gulpfile.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/positionBrowsing.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/intro.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/teachInTimeLine.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/viewJob.html", - "/C/Users/zhaoxingyu01/Desktop/test3.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/choseLocation.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/scripts/intro - 副本-debug.js", - "/D/gitProjects/lunbo/index.html", - "/D/gitProjects/lunbo/bundle.js", - "/D/gitProjects/webapp/gulpfile.js", - "/D/gitProjects/lunbo/less/common.less", - "/D/gitProjects/lunbo/js/app.js", - "/D/gitProjects/lunbo/新建文件夹/index.html", - "/D/gitProjects/lunbo/新建文件夹/common.css", - "/D/gitProjects/webapp/bundle.js", - "/D/gitProjects/webapp/js/app.js", - "/D/gitProjects/webapp/index.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/scripts/action-debug.js", - "/C/Windows/System32/drivers/etc/hosts", - "/D/phonegapdemo/my-app/www/spec.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/Gruntfile.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/config.js", - "/D/gitProjects/lunbo/common.css", - "/C/Users/zhaoxingyu01/Desktop/mystory.txt", - "/C/Users/zhaoxingyu01/Desktop/修改.tx", - "/D/gitProjects/webapp/node_modules/iscroll/build.js", - "/D/gitProjects/webapp/node_modules/iscroll/build/iscroll.js", - "/D/gitProjects/webapp/node_modules/gulp-less/index.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/images/images/intro-down-arrow_03.png", - "/D/newEm/package.json", - "/D/newEm/gulpfile.js", - "/D/newEm/node_modules/handlebars/lib/handlebars/safe-string.js", - "/D/newEm/bundle.js", - "/D/newEm/views/Employee.js", - "/D/newEm/templates/Employee.hbs", - "/D/newEm/views/EmployeeList.js", - "/D/newEm/views/Home.js", - "/D/newEm/node_modules/jquery/dist/jquery.js", - "/D/newEm/views/Reports.js", - "/D/newEm/router.js", - "/D/newEm/utils/pageslider.js", - "/D/newEm/models/memory/employee.js", - "/D/newEm/app.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/package.json", - "/D/newEm/Gruntfile.js", - "/D/newEm/greetings.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/partials/phone-detail.html", - "/D/新建文件夹 (2)/angular-phonecat-master/app/partials/phone-list.html", - "/D/phonegapdemo/my-app/www/index.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/imageLoader.js", - "/D/backbone-master/backbone.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/js/controllers.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/index.html", - "/D/新建文件夹 (2)/angular-phonecat-master/app/js/app.js", - "/D/underscore-master/underscore.js", - "/D/phonegapdemo/my-app/.cordova/config.json", - "/D/phonegapdemo/my-app/www/spec/index.js", - "/C/Users/zhaoxingyu01/.cordova/lib/ios/cordova/3.5.0/VERSION", - "/C/Users/zhaoxingyu01/.cordova/lib/ios/cordova/3.5.0/package.json", - "/C/Users/zhaoxingyu01/.cordova/lib/android/cordova/3.5.0/VERSION", - "/D/新建文件夹 (2)/angular-phonecat-master/app/js/filters.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/js/animations.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/js/services.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/js/directives.js", - "/D/新建文件夹 (2)/angular-phonecat-master/app/bower_components/angular-resource/README.md", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/utils.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/viewJob.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/mousewheel.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/scripts/bottomBar.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/assets/templates/test.jade", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/scripts/jadetpl-debug.js", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/choseLocation.html", - "/D/post.go", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/index.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/html/rotateCircle.html", - "/C/Users/zhaoxingyu01/IdeaProjects/hrBaidu/dist/scripts/positionBrowsing-debug.js" - ], - "find": - { - "height": 34.0 - }, - "find_in_files": - { - "height": 0.0, - "where_history": - [ - "C:\\Users\\zhaoxingyu01\\IdeaProjects\\hrBaidu", - "" - ] - }, - "find_state": - { - "case_sensitive": false, - "find_history": - [ - "this", - "target", - "//", - "max", - "toStartTimeOut", - "clear", - "mouse", - "toStartTimeOut", - "slideup", - "location", - "setTimeout", - "Slider", - "类", - "type", - "setAutoChange", - "mousewheelForLowVersionIe", - "setAutoChange", - "toStartTimeOut", - "autoChangeTimeOut", - "toStartTimeOut", - "mousewheelForLowVersionIe", - "_this.setAutoChange();", - "setAutoChange", - "chong", - "重庆", - "introDownArrow", - "introDownArrowSelectorString", - "intro-down-arrow", - "introDownArrow", - "autoChange", - "superman-group-two", - "superman", - ".translate(", - "0%{.translate(-5px,0)", - "intro-four-superwoman-wave", - "superwoman", - "intro-one-superman-group-two", - "superwoman", - "upDownTwoPx", - "down", - "clearIntroFourInFinishAnimation", - "-formoz", - ".find('.out-fade", - ".find", - ".find( \".out-fade-out\" )", - ".find( \".out-fade-out\")", - ".find(\".out-fade-out\")", - "opacity: 1;", - "opacity:1", - "opacity:1;", - "intro-four-superwoman", - ".css('animation', ", - "clearIntroFourInFinishAnimation", - "introFourBubbleSix", - ".css('animation', ", - ".css('opacity','0');", - "clearIntroThreeOutAnimation", - "introThreeEarth", - "clearIntroThreeOutAnimation", - "out-rotate-out", - "clearIntroThreeOutAnimation", - "clearIntroTwoOutAnimation", - "clearIntroTwoInFinishAnimation", - "introThreeEarthOutLine", - "introThreeEarthOutLineSelectorString", - "introThreeEarthOutline", - "introThreeEarthOutLine", - "introThreeEarthOutLineSelectorString", - "introThreeEarthOutline", - "introThreeStars", - "introThreeSubTitle", - "intro-two", - "introTwoBatman", - "setAutoChange", - "cssAnimation", - ".css('opacity', '0');", - "'0'", - "intro-two-cloud-one-popup", - "introFourSuperwoman", - "intro-four-super", - "intro-four-car", - "intro-four-c", - "search-input", - "searchInput", - "search-input", - ".right-menu", - "arrow", - "top-logo", - "arrow-up", - "location-arrow", - "all-location", - "rotate-half-back", - "rotate-half-back-formoz", - "for-moz", - "locationArrow", - "rotate-half", - "location-arrow", - "locationArrow", - "rotate-half", - ".animation() ", - ".animation", - ".animation() ", - "location-arrow.active", - "location-arrow active", - "road", - "intro-down-arrow-start.png", - "rotate 20s infinite linear", - "rotate(360deg)", - "keyframes rotate", - "rotate", - "autoChange", - "content", - "changeRightNav", - "intro-right-nav", - "intro-three-right-nav", - "changeRightNav", - "introRightNav", - "introRightNavSelectorString", - "intro-right-nav", - "intro-one-right-nav", - "intro-right-nav", - "transition", - "intro-four-road", - "spider", - "batman", - "spider", - "introThree", - "rotate" - ], - "highlight": true, - "in_selection": false, - "preserve_case": false, - "regex": false, - "replace_history": - [ - "self", - "", - "min", - "", - ".cssAnimation(", - ",", - "intro-down-arrow-start-ms.png", - "popUpDiscription", - "../dist/images/intro-down-arrow-start.png", - "cssAnimation(", - "dummy 1s", - ".css('", - "@{-}", - "Sequence", - "running", - "tree", - "building", - "slidesHolder", - "#222", - "#333", - "#fc8768", - "#f4572d", - "#3d3d3d", - "#999", - "#ddd", - "#d6d6d6", - "#fff", - "#f8f8f8", - "#e5e5e5", - "#eee", - "#c5000f" - ], - "reverse": false, - "show_context": true, - "use_buffer2": true, - "whole_word": false, - "wrap": true - }, - "groups": - [ - { - "sheets": - [ - ] - } - ], - "incremental_find": - { - "height": 34.0 - }, - "input": - { - "height": 31.0 - }, - "layout": - { - "cells": - [ - [ - 0, - 0, - 1, - 1 - ] - ], - "cols": - [ - 0.0, - 1.0 - ], - "rows": - [ - 0.0, - 1.0 - ] - }, - "menu_visible": true, - "output.9o://C:\\Users\\zhaoxingyu01\\IdeaProjects\\hrBaidu\\assets\\styles": - { - "height": 100.0 - }, - "replace": - { - "height": 62.0 - }, - "save_all_on_build": true, - "select_file": - { - "height": 0.0, - "selected_items": - [ - ], - "width": 0.0 - }, - "select_project": - { - "height": 0.0, - "selected_items": - [ - ], - "width": 0.0 - }, - "show_minimap": true, - "show_open_files": false, - "show_tabs": true, - "side_bar_visible": true, - "side_bar_width": 247.0, - "status_bar_visible": true -}