网站首页 站内搜索

搜索结果

查询Tags标签: height,共有 705条记录
  • transition和transform

    transition-property属性指定CSS属性的nametransition效果(transition效果时将会启动指定的CSS属性的变化),默认是all,width和height也可以。 提示:一个转场效果,通常会出现在当用户将鼠标悬停在一个元素上时。 transition-duration 属性规定完成过渡效果需要花费的时…

    2021/8/18 23:36:59 人评论 次浏览
  • transition和transform

    transition-property属性指定CSS属性的nametransition效果(transition效果时将会启动指定的CSS属性的变化),默认是all,width和height也可以。 提示:一个转场效果,通常会出现在当用户将鼠标悬停在一个元素上时。 transition-duration 属性规定完成过渡效果需要花费的时…

    2021/8/18 23:36:59 人评论 次浏览
  • JavaScript — 原生js实现上传图片控件

    一、修改原生 input 样式 html 结构 <div class="card"><input id="upload" type="file" accept=".jpg" /><div class="view"><!-- 上传成功后 --><div id="imgContainer" class…

    2021/8/18 20:06:10 人评论 次浏览
  • JavaScript — 原生js实现上传图片控件

    一、修改原生 input 样式 html 结构 <div class="card"><input id="upload" type="file" accept=".jpg" /><div class="view"><!-- 上传成功后 --><div id="imgContainer" class…

    2021/8/18 20:06:10 人评论 次浏览
  • 【C#】图片处理(底片,黑白,锐化,柔化,浮雕,雾化)

    通过GDI+对图片数据进行处理,下面列出各个效果的算法 对于读取图片的每个像素颜色的速度非常慢,这里使用LockBitmap类来对图片像素进行操作,LockBitmap类的定义看这里 http://www.cnblogs.com/bomo/archive/2013/02/26/2934055.html 1、旋转(90度,180度,270度)1 //…

    2021/8/17 9:06:01 人评论 次浏览
  • 【C#】图片处理(底片,黑白,锐化,柔化,浮雕,雾化)

    通过GDI+对图片数据进行处理,下面列出各个效果的算法 对于读取图片的每个像素颜色的速度非常慢,这里使用LockBitmap类来对图片像素进行操作,LockBitmap类的定义看这里 http://www.cnblogs.com/bomo/archive/2013/02/26/2934055.html 1、旋转(90度,180度,270度)1 //…

    2021/8/17 9:06:01 人评论 次浏览
  • 023>仿PDD官网

    *{margin: 0;padding: 0s; } .box{position: fixed;top: 0;width: 100%;height: 103px;background-color: white;border-bottom: 4px solid red; } .div1{height: 150px; background-color: blue;margin-top: 107px; } .div2{height: 150px; background-color: yell…

    2021/8/15 6:05:44 人评论 次浏览
  • 023>仿PDD官网

    *{margin: 0;padding: 0s; } .box{position: fixed;top: 0;width: 100%;height: 103px;background-color: white;border-bottom: 4px solid red; } .div1{height: 150px; background-color: blue;margin-top: 107px; } .div2{height: 150px; background-color: yell…

    2021/8/15 6:05:44 人评论 次浏览
  • PAT (Advanced Level) Practice 1109 Group Photo (25 分) 凌宸1642

    PAT (Advanced Level) Practice 1109 Group Photo (25 分) 凌宸1642 题目描述: Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following:The number of people in each row must be N/K (round down…

    2021/8/14 23:10:21 人评论 次浏览
  • PAT (Advanced Level) Practice 1109 Group Photo (25 分) 凌宸1642

    PAT (Advanced Level) Practice 1109 Group Photo (25 分) 凌宸1642 题目描述: Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following:The number of people in each row must be N/K (round down…

    2021/8/14 23:10:21 人评论 次浏览
  • Android相机

    查看相机支持的尺寸:for (Camera.Size size : parameters.getSupportedPreviewSizes()) {int width = Math.min(size.width, size.height);int height = Math.max(size.width, size.height);int max=WindowsUtils.getGYS(width,height);Log.e("预览尺寸","…

    2021/8/14 6:07:25 人评论 次浏览
  • Android相机

    查看相机支持的尺寸:for (Camera.Size size : parameters.getSupportedPreviewSizes()) {int width = Math.min(size.width, size.height);int height = Math.max(size.width, size.height);int max=WindowsUtils.getGYS(width,height);Log.e("预览尺寸","…

    2021/8/14 6:07:25 人评论 次浏览
  • Java学习

    第24天 构造方法代码实例 //filename: App7_3. javaclass Cylinder{private double radius;private int height ;private double pi= 3. 14;private String color;public double setCylinder(double r, int h){radius= r;height= h;return r + h;}public void setCylinde…

    2021/8/11 20:06:41 人评论 次浏览
  • Java学习

    第24天 构造方法代码实例 //filename: App7_3. javaclass Cylinder{private double radius;private int height ;private double pi= 3. 14;private String color;public double setCylinder(double r, int h){radius= r;height= h;return r + h;}public void setCylinde…

    2021/8/11 20:06:41 人评论 次浏览
  • JavaScript编写油猴脚本(2)

    百度贴吧隐私保护效果:可以遮盖百度贴吧首页“爱逛的吧”,并且带开关按钮(写来玩、练手的):// ==UserScript== // @name 百度贴吧隐私保护 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 遮盖“爱逛的吧” // @author …

    2021/8/7 17:09:35 人评论 次浏览
扫一扫关注最新编程教程