网页
文章平均质量分 67
qq_4027
你们都看不到我...
展开
-
网页基础
1.边框圆角border-radius:50%是圆形2.盒子阴影box-shadow:10px 10px 10px 10px #0a0 insert 水平 垂直 模糊程度 模糊程度扩展大小 颜色 内模糊,不写就是外模糊3文字原创 2017-09-27 14:57:10 · 168 阅读 · 0 评论 -
angular 追加文本框输入的内容
input{margin-top: 10px;} button{margin-top: 10px;} div{border:1px solid deepskyblue;width: 500px;height: 300px;} angular.module('myapp'原创 2017-10-13 10:55:23 · 648 阅读 · 0 评论 -
angular 过滤器
AngularJS //获取系统时间对象 var date = new Date(); var app = angular.module('myapp', []); app.controller('myctrl', f原创 2017-10-13 14:01:49 · 154 阅读 · 0 评论 -
html angular+route:模糊查询+限定年龄范围+全部删除+批量删除+修改密码+添加用户
第三周模拟 var app = angular.module("myApp", ['ngRoute']); //使用config配置路由规则 app.config(["$routeProvider", function($routeProvider) {转载 2017-10-22 20:09:55 · 453 阅读 · 1 评论 -
html angular 加载json内容service
var app=angular.module("myapp",[]) app.controller("myctrl",function($scope,$http){ $http({ method:"get", url:"myjson.json"原创 2017-10-13 18:18:57 · 281 阅读 · 0 评论 -
html angular自定义过滤器,指定所需要替换的文字
var app = angular.module("myApp",[]); app.controller("myCtrl",function($scope){ $scope.haha = "hello,angular"; }); //调用filter()方原创 2017-10-13 18:28:42 · 365 阅读 · 0 评论 -
HTML angular定时改变指定文本内容
var app = angular.module("myApp",[]); app.controller("myCtrl",function($scope,$timeout){ $scope.name = "张三"; $timeout(function(){ $s原创 2017-10-13 18:39:35 · 422 阅读 · 0 评论 -
HTML angular获得系统当前时间
var app = angular.module("myApp",[]); app.controller("myCtrl",function($scope,$interval){ $scope.date = new Date().toLocaleTimeString(); $interval(functi原创 2017-10-13 18:43:21 · 2997 阅读 · 0 评论 -
html angular+route:模糊查询+下拉排序+新增内容+判断是否重复+输入敏感字提示
第三周 tr { background: #D4D4D4; } tr:nth-child(2n) { background: #FFFFFF; }原创 2017-10-23 16:00:26 · 240 阅读 · 0 评论 -
html angular+jquery:判断密码并改变标签样式+新增提示内容
#ts { width: 148px; } flag = false; var app = angular.module("myApp", []); app.controller("原创 2017-10-24 09:51:27 · 254 阅读 · 0 评论 -
HTML angular购物车:加减按钮改变数量+全选+低于1时提示删除商品+计算所有商品总价+清空购物车+单独删除+输入内容小于1时,自动变为1+反选
购物车 --> var app = angular.module("myApp", []); app.controller("myController", function($scope) { $scope.user = [{原创 2017-10-24 13:43:12 · 1378 阅读 · 0 评论 -
HTML angular过滤关键字
var app = angular.module("myApp", []); app.filter("replace", function() { return function(text) { function replaceValue(text) {原创 2017-10-16 15:18:33 · 254 阅读 · 0 评论 -
HTML angular追加内容,并进行判断原先是否存在和是否存在敏感字符
#srk { margin-left: 50px; } button { margin-left: 140px; } div { back原创 2017-10-16 15:14:12 · 734 阅读 · 0 评论 -
HTML angular+route:订单
html> head> meta charset="UTF-8"> title>title> script type="text/javascript" src="../AngularJS/angular.js" >script> script type="text/javascript" src="../AngularJS/angular-route.js" >script>原创 2017-10-25 19:11:14 · 226 阅读 · 0 评论 -
dddhhhfff
Title var app = angular.module("myApp",[]); app.controller("myCtrl",function ($scope) { $scope.goods= [{ check:false, nam原创 2017-10-24 20:27:53 · 213 阅读 · 0 评论 -
angular 在文本框输入内容替换旧的内容
*{margin-left: 10px;} div{border:1px solid deepskyblue;width: 500px;height: 300px;} var myapp=angular.module("myapp",[]); myapp原创 2017-10-13 10:53:04 · 482 阅读 · 0 评论 -
HTML route 登录+游戏+修改密码
路由 *{margin:0px auto;} li { list-style-type: none; border: 1px solid deepskyblue; text-align: center;原创 2017-10-20 20:29:29 · 995 阅读 · 0 评论 -
不停变化颜色+左右移动
无标题文档@-webkit-keyframes 'wobble' { 0% { margin-left: 100px; background: green;} 40% { margin-left: 150px; background: orange;} 60% { margin-left: 250px; background: blue;}转载 2017-09-28 11:15:35 · 269 阅读 · 0 评论 -
鼠标悬浮,产生变化
无标题文档.aa { width: 100px; height: 100px; background: #FF0; margin: 50px; transition: all 2s;}.aa:hover { text-align:center;line-height:200px; width: 500px;原创 2017-09-28 11:17:03 · 254 阅读 · 0 评论 -
javascript获得系统当前时间
无标题文档 window.onload = function(){ showTime(); } function showTime(){ var myDate = new Date(); var year = myDate.getFullYear(); var month = myDate.getMonth() + 1;转载 2017-10-08 10:32:39 · 228 阅读 · 0 评论 -
设置定时跳转
定时函数 3S后跳转到百度 当前时间为: 调用的次数是: function testSetTimeout(){ //alert("asdf"); //定时 setTimeout(functi原创 2017-10-08 18:16:17 · 515 阅读 · 0 评论 -
HTML route点击不同按钮,显示不同内容,可以改变按钮背景颜色
li { list-style-type: none; } a { float: left; line-height: 60px; display: block;原创 2017-10-18 13:19:54 · 1230 阅读 · 0 评论 -
HTML angular单选按钮
var app = angular.module("myApp",[]); app.controller("myCtrl",function($scope){ $scope.radios = [{ keys:"A", v转载 2017-10-18 18:36:15 · 509 阅读 · 0 评论 -
HTML ionic单选按钮
var app = angular.module("myApp", ['ionic']); app.controller("myCtrl", function($scope) { $scope.list = [{ text: "java", value:转载 2017-10-18 18:44:55 · 489 阅读 · 0 评论 -
HTML ionic左和右的侧滑栏
var app = angular.module("myApp", ['ionic']); app.controller("myCtrl", function($scope) { $scope.user = ["张三","李四","王五"]; $scope.settings = ["我的菜单","我的关注原创 2017-10-19 13:30:33 · 287 阅读 · 0 评论 -
html点击时追加元素和删除元素
无标题文档input { margin-right: 15px}#tj { margin-left: 350px}//// function del(type){// var idd = "tr"+type;// $("#"+idd).remove();// };原创 2017-10-10 20:22:59 · 632 阅读 · 0 评论 -
html点击按钮切换图片,并自动定时轮换
无标题文档#hello { width: 108px; height: 108px; border: 1px solid #369; overflow: hidden; margin: auto;} var t; function a(){原创 2017-10-10 20:19:55 · 7167 阅读 · 0 评论 -
html 实现二级列表,点击会变色
无标题文档 *{ margin:0px; padding:0px; } a{ text-decoration:none; } h3{ font-weight:normal; line-height:40px; ba原创 2017-10-11 09:13:20 · 1807 阅读 · 0 评论 -
HTML angular多选框
var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.data = [{ key: "1", value: "这是第一项"转载 2017-10-19 18:27:02 · 286 阅读 · 0 评论 -
HTML 模糊查找加删除
table{border: 1px solid deepskyblue;} var app = angular.module('myapp', []); app.controller('myctrl', function($scope) { $scope原创 2017-10-20 14:23:21 · 336 阅读 · 0 评论 -
html angular购物车全选+全删+批量删除+单独删除+模糊查找+筛选价格区间
第三周周考 var app = angular.module("myApp", []); app.controller("myController", function($scope) { $scope.user = [{原创 2017-10-20 15:28:20 · 596 阅读 · 0 评论 -
HTML 对标签进行新加,复制,修改,删除功能
无标题文档新建复制修改删除 列表1 列表2 列表3 $(function(){ //新建 $("button:eq(0)").click(function(){ var a = $("input").val(); $("原创 2017-10-12 08:49:27 · 804 阅读 · 0 评论 -
html 投骰子比输赢,并可以清空文本内容
无标题文档张三的骰子 李四的骰子 获胜者 function butt(){ var a = document.getElementById('a').value=(Math.random()*(6-1)+1).toFixed(0); var b = document.getElementById('b').valu原创 2017-10-12 08:55:52 · 382 阅读 · 0 评论 -
HTML angular:订单查询添加等
Title *{ margin: 0; padding: 0; } body { width: 1600px; margin: 0 auto; margin-top: 50px;转载 2017-10-26 08:09:36 · 285 阅读 · 0 评论