How to use checkScroll method in wpt

Best JavaScript code snippet using wpt

apply.js

Source:apply.js Github

copy

Full Screen

...75 $('#submit_btn').attr('title',"请先阅读服务条款!");76 }77 });78 var cansubmit = true;79 function checkScroll(name,label){80 if(!label){81 label = 'input'82 };83 var selector = label + '[name="' + name + '"]';84 cansubmit = false;85 $(selector).parent().addClass('has-error');86 var offset = $(selector).parent().offset();87 scroll(offset.top - 71 - ((name=="unit" || name=="school") ? 100 : 0));88 alifenxi.track('提交出错',{89 err_type : name90 });91 }92 $('#submit_btn').on('click',function(e) {93 cansubmit = true;94 alert("谢谢您的关注,本次活动报名已经截止!")95 return;96 $('.has-error','#activity_form').removeClass('has-error')97 if(!is_agree){98 $('#textarea_fwtk').parent().addClass('has-error');99 alifenxi.track('提交出错',{100 err_type : 'fwtk'101 })102 return;103 }104 alifenxi.track('提交点击');105 var values = {};106 $.each($('#activity_form').serializeArray(), function(i, field) {107 values[field.name] = $.trim(field.value);108 });109 if(!values['username']){110 checkScroll('username');111 }else if(!values['sex']){112 cansubmit = false;113 $('input[name="sex"]').parent().parent().addClass('has-error');114 var offset = $('input[name="sex"]').parent().parent().offset();115 scroll(offset.top - 71);116 alifenxi.track('提交出错',{117 err_type: 'sex'118 })119 }else if(!values['idcardnum']){120 checkScroll('idcardnum');121 }else if(!values['email'] || !testType('email',values['email'])){122 checkScroll('email');123 }else if(!values['mobile'] || !testType('num',values['mobile'])){124 checkScroll('mobile');125 }else if(!values['career']){126 checkScroll('career', 'select');127 }else if(!values['address']){128 checkScroll('address');129 }else if(!values['zipcode']){130 checkScroll('zipcode');131 }else if(!values['education']){132 checkScroll('education', 'select');133 }else if(!values['attend_before']){134 cansubmit = false;135 $('input[name="attend_before"]').parent().parent().addClass('has-error');136 var offset = $('input[name="attend_before"]').parent().parent().offset();137 scroll(offset.top - 71);138 alifenxi.track('提交出错',{139 err_type : "attend_before"140 })141 }else if(!values['result']){142 checkScroll('result','textarea');143 }144 if(cansubmit){145 if(values['career'] == "公务员" || values['career'] == "金融机构从业人员" || values['career'] == "其他"){146 values['unit'] = $('input[name="unit"]','.finace-people.row').val();147 values['career_name'] = $('input[name="career_name"]','.finace-people.row').val();148 values['english'] = $('input[name="english"]','.finace-people.row').val();149 values['work_experience'] = $('textarea[name="work_experience"]','.finace-people.row').val();150 if(!values['unit']){151 checkScroll('unit');152 }else if(!values['career_name']){153 checkScroll('career_name');154 }else if(!values['english']){155 checkScroll('english');156 }else if(!values['work_experience']){157 checkScroll('work_experience','textarea');158 }159 }else if(values['career'] == "教师"){160 values['unit'] = $('input[name="unit"]','.teacher-people.row').val();161 values['career_name'] = $('input[name="career_name"]','.teacher-people.row').val();162 values['english'] = $('input[name="english"]','.teacher-people.row').val();163 if(!values['unit']){164 checkScroll('unit');165 }else if(!values['career_name']){166 checkScroll('career_name');167 }else if(!values['english']){168 checkScroll('english');169 }else if(!values['research']){170 checkScroll('research','textarea');171 }172 }else if(values['career'] == "学生"){173 if(!values['school']){174 checkScroll('school');175 }else if(!values['s_class']){176 checkScroll('s_class','select');177 }else if(!values['department']){178 checkScroll('department');179 }else if(!values['english']){180 checkScroll('english');181 }else if(!values['study']){182 checkScroll('study','textarea');183 }184 }185 }186 cansubmit && $.post("/gdpx/apply",values,function(result){187 if(result.err == 0){188 alifenxi.track('注册成功',{189 process_time : Math.floor((new Date().getTime() - s_time)/1000)190 })191 alert('注册成功!')192 }193 },'json')194 })...

Full Screen

Full Screen

getPageY.js

Source:getPageY.js Github

copy

Full Screen

1module("baidu.event.getPageY");2var checkX = function(y, offset, type) {// 不直接调用这个方法,防止页面出现滚动条的情况,统一调用checkscrollX3 var fn = function(e) {4 equal(baidu.event.getPageY(e), (y + offset) || 0, type + ' get PageY '5 + (y + offset));6 };7 type = type || 'mousedown';8 offset = offset || 0;9 var element = document.body;10 if (element.addEventListener) {11 element.addEventListener(type, fn, false);12 } else if (document.body.attachEvent) {13 element.attachEvent('on' + type, fn);14 }15 if (ua[type] && typeof ua[type] == 'function') {16 ua[type](element, {17 clientX : 0,18 clientY : y19 });20 }21 if (element.removeEventListener) {22 element.removeEventListener(type, fn, false);23 } else if (element.detachEvent) {24 element.detachEvent('on' + type, fn);25 }26};27var checkscrollY = function(x, offset, type) {// 通过设置div的宽度制造滚动条,从而可以设置scrollLeft28 var div = document.createElement('div');29 document.body.appendChild(div);30 $(div).css('width', 200).css('height', 5000).css('border', 'solid');31 window.scrollTo(document.body.scrollLeft, offset);32 checkX(x, offset, type);33 window.scrollTo(document.body.scrollLeft, 0);34 document.body.removeChild(div);35};36test("老接口:getPageX", function() {37 expect(8);38 checkscrollY(0, 0);39 checkscrollY(100, 200, 'mousedown');40 checkscrollY(0, 0, 'mousemove');41 checkscrollY(100, 0, 'mouseover');42 checkscrollY(10, 200, 'mousemove');43 checkscrollY(0, 0, 'mouseout');44 checkscrollY(100, 200, 'click');45 checkscrollY(10, 20, 'dblclick');...

Full Screen

Full Screen

index.js

Source:index.js Github

copy

Full Screen

...14 getSections() {15 const getBlock = number => $(`[data-js-block-${number}]`, this.$el).get(0);16 return [17 { checkScroll: this.checkScrollMain.bind(this), el: this.el },18 { checkScroll: this.checkScroll(getBlock(1)), el: getBlock(1) },19 { checkScroll: this.checkScroll(getBlock(2)), el: getBlock(2) },20 { checkScroll: this.checkScroll(getBlock(3)), el: getBlock(3) },21 { checkScroll: this.checkScroll(getBlock(4)), el: getBlock(4) },22 { checkScroll: this.checkScroll(getBlock(5)), el: getBlock(5) },23 { checkScroll: this.checkScroll(getBlock(6)), el: getBlock(6) },24 ];25 },26 checkScrollMain(scrollTop, scrollElTop) {27 if (scrollElTop > 150) {28 this.$el.addClass('animate');29 return true;30 }31 return false;32 },33 checkScroll(el) {34 return (scrollTop, scrollElTop) => {35 if (scrollElTop > 300) {36 $(el).addClass('animate');37 return true;38 }39 return false;40 };41 },...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var wpt = require('./wpt.js');2wpt.checkScroll();3var wpt = require('./wpt.js');4wpt.checkScroll();5var wpt = require('./wpt.js');6wpt.checkScroll();7var wpt = require('./wpt.js');8wpt.checkScroll();

Full Screen

Using AI Code Generation

copy

Full Screen

1if (checkScroll) {2 console.log('checkScroll method is available');3} else {4 console.log('checkScroll method is not available');5}6if (window.checkScroll) {7 console.log('checkScroll method is available');8} else {9 console.log('checkScroll method is not available');10}11window.scrollTo(0, 1000);12if (checkScroll) {13 console.log('checkScroll method is available');14} else {15 console.log('checkScroll method is not available');16}17window.scrollTo(0, 1000);18if (checkScroll) {19 console.log('checkScroll method is available');20} else {21 console.log('checkScroll method is not available');22}

Full Screen

Using AI Code Generation

copy

Full Screen

1if (checkScroll()) {2}3if (checkScrollPosition()) {4}5if (checkScrollPosition()) {6}7if (checkScrollPosition()) {8}9if (checkScrollPosition()) {10}11if (checkScrollPosition()) {12}

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run wpt automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful