예제 #1
0
 def m_addEventListener(self):
     # 在这个EventTarget上添加指定事件类型的事件监听器 调用之前必须创建一个函数
     event = randoms.Events()
     function = randoms.Funcs()
     useCapture = randoms.bool()
     return "'%s',%s,%s" % (event, function, useCapture)
예제 #2
0
 def p_onafterprint(self):
     return r.Funcs()
예제 #3
0
 def p_onmozinterruptend(self):
     return r.Funcs()
예제 #4
0
파일: Element.py 프로젝트: qiyeboy/morph
 def p_onlostpointercapture(self):
     return r.Funcs()
예제 #5
0
 def p_ontouchenter(self):
     return r.Funcs()
예제 #6
0
 def p_ontouchcancel(self):
     return r.Funcs()
예제 #7
0
 def p_ononline(self):
     return r.Funcs()
예제 #8
0
 def p_ontouchstart(self):
     return r.Funcs()
예제 #9
0
 def p_onlanguagechange(self):
     return r.Funcs()
예제 #10
0
 def p_onmessage(self):
     return r.Funcs()
예제 #11
0
 def p_onhashchange(self):
     return r.Funcs()
예제 #12
0
 def p_onbeforeunload(self):
     return r.Funcs()
예제 #13
0
 def p_onbeforeprint(self):
     return r.Funcs()
예제 #14
0
 def p_oncut(self):
     return r.Funcs()
예제 #15
0
 def p_onpagehide(self):
     return r.Funcs()
예제 #16
0
 def p_onpaste(self):
     return r.Funcs()
예제 #17
0
 def p_onpageshow(self):
     return r.Funcs()
예제 #18
0
 def p_ontouchmove(self):
     return r.Funcs()
예제 #19
0
 def p_onpopstate(self):
     return r.Funcs()
예제 #20
0
 def p_ontouchleave(self):
     return r.Funcs()
예제 #21
0
 def p_onstorage(self):
     return r.Funcs()
예제 #22
0
 def p_onmozinterruptbegin(self):
     return r.Funcs()
예제 #23
0
 def p_onunhandledrejection(self):
     return r.Funcs()
예제 #24
0
 def p_onencrypted(self):
     return r.Funcs()
예제 #25
0
 def p_onunload(self):
     return r.Funcs()
예제 #26
0
파일: Element.py 프로젝트: qiyeboy/morph
 def p_onwheel(self):
     return r.Funcs()
예제 #27
0
 def p_oncopy(self):
     return r.Funcs()
예제 #28
0
 def m_removeEventListener(self):
     # 从这个EventTarget移除事件监听器
     event = randoms.Events()
     function = randoms.Funcs()
     useCapture = randoms.bool()
     return "'%s',%s,%s" % (event, function, useCapture)
예제 #29
0
 def m_toBlob(self):
     callback = r.Funcs()
     mimeType = r.MIMEType()
     qualityArgument = r.double(1)
     return "'%s','%s',%s" % (callback, mimeType, qualityArgument)