码迷,mamicode.com
首页 >  
搜索关键字:radius    ( 2156个结果
为Input输入框添加圆角并去除阴影 去除获得焦点时方角样式
目录 1、为Input输入框添加圆角并去除阴影 2、去除获得焦点时方角样式 内容 1、为Input输入框添加圆角并去除阴影 1.1 border-radius不同浏览器下兼容设置: 1.2 去除阴影 在我们为input输入框设置圆角值时,一般情况下会出现向内部凹陷的阴影,这个时候我们只需要为inpu ...
分类:其他好文   时间:2017-09-12 13:52:23    阅读次数:233
javascript 鼠标跟随特效代码及理解
javascript鼠标跟随特效<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title></title><style>*{margin:0;padding:0;}body{height:1000px;}div{width:50px;height:50px;background:red;-webkit-border-radius:50%;-moz-..
分类:编程语言   时间:2017-09-11 18:27:27    阅读次数:233
圆的周长与面积
import java.lang.Math; public class C{ private double radius; C(double r){ this.radius = r; } public double areaCal(){ return Math.PI*this.radius*this ...
分类:其他好文   时间:2017-09-11 13:10:09    阅读次数:153
CSS3新特性
CSS3 边框: border-radius(倒圆角)box-shadow (盒子阴影)border-image (边界图片) CSS3 背景: background-size(属性规定背景图片的尺寸。)background-origin(属性规定背景图片的定位区域。背景图片可以放置于 conten ...
分类:Web程序   时间:2017-09-11 00:53:46    阅读次数:263
圆的周长和面积
Public class Area { public static void main(String[] args) { double radius; double area; double PI=3.14159; double circle; radius =5.5; circle=2 * PI ...
分类:其他好文   时间:2017-09-10 22:54:16    阅读次数:246
C#方法有关内容的总结--C#基础
1、静态方法与实例方法 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace 静态方法与实例方法{ class ...
分类:Windows程序   时间:2017-09-10 14:21:12    阅读次数:255
jquery开关按钮效果
.circular1{ width: 50px; height: 30px; border-radius: 16px; background-color: #ccc; transition: .3s; cursor: pointer; } .rou... ...
分类:Web程序   时间:2017-09-08 13:23:33    阅读次数:290
Python输入输出练习,运算练习,turtle初步练习
Hello World! 简单交互(交互式,文件式)教材P19 radius=25 area=3.1415*radius*radius print(area) print('{:.2f}'.format(area)) 用户输入两个数字,计算并输出两个数字之和: a=input('请输入第一个数字:' ...
分类:编程语言   时间:2017-09-06 20:18:58    阅读次数:306
jquery手风琴制作
* { margin:0; padding:0;}#wrap { width:800px; height:400px; margin:0 auto; border:5px solid #009999; border-radius:10px; margin-top:10px; position:rel ...
分类:Web程序   时间:2017-09-05 22:00:37    阅读次数:150
jquery倒计时制作
.btn { width:120px; height:40px; float:left; color: white; background-color: #3498db; border-radius: 6px; text-align: center; text-decoration: none; } ...
分类:Web程序   时间:2017-09-05 21:55:48    阅读次数:151
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!