自使用分辨率
狸狸1009
新时代农民工
展开
-
判断屏幕是否全屏
//判断浏览器是否全屏function isFullscreenForNoScroll() {var explorer = window.navigator.userAgent.toLowerCase();if (explorer.indexOf(‘chrome’) > 0) {//webkitif (document.body.scrollHeight === window.sc...原创 2018-12-06 11:14:47 · 1850 阅读 · 0 评论 -
js闪烁效果
其中.animated是需要闪烁的class,通过改变透明度实现闪烁效果,有兴趣可以试试.animated{-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both}@-webkit-keyframes twinkl...原创 2018-12-28 17:17:38 · 2106 阅读 · 0 评论 -
webservice客户端编写(axis2)不需要采用命令行生成,可直接调用
webservice客户端编写(axis2)不需要采用命令行生成,可直接调用package com.test.manage;import java.util.Iterator;import java.util.List;import org.apache.axiom.om.OMAbstractFactory;import org.apache.axiom.om.OMElement;...原创 2019-03-01 10:49:15 · 379 阅读 · 0 评论