• js将汉字转为相应的拼音

    !DOCTYPE htmlhtml lang="zh"headmeta charset="UTF-8"titlejs将汉字转为相应的拼音/title/headbodyscript type="text/javascript"var PinYin = { "a": "\u554a\u963f\u9515", "ai": "\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698...

    2018-06-24 01:09:57

  • JavaScript元素滚动条到达一定位置循环追加内容

    1 ! DOCTYPE html 2 html lang ="en" 3 head 4 meta charset ="UTF-8" 5 title Document / title 6 style type ="text/css" 7 body { 8 background-color : #eee ; 9 } 10 #contents { 11 margin : 30px auto ; 12 width : 960px ; 13 height : 300px ; 14 overflow :...

    2018-06-24 01:09:51

  • JavaScript

    愿得一人心,白首不相离 什么是javaScript?就是java语言的一种补充,还有什么其它的给个链接 https://baike.baidu.com/item/javascript/321142?fr=aladdin,没事喽两眼,哈哈 1 Js 对象 2 3 使用new 关键字来创建对象,举例如下, 4 5 var a = new String(); 6 如构造...

    2018-06-24 01:09:50

  • 图形的滚动及颜色区域的拉移

    首先准备两个盒子: div id = "oDiv" style = "top:40px;" class = "box" div id = "ldiv" style="height:30px ;background: chartreuse "/div /div 再写样式: body{ width: 2000px; height: 2000px; } .box{ width: 150px; height: 200px; position: absolute; right...

    2018-06-24 01:09:46

  • js 时间戳转换为‘yyyy-MM-dd hh:mm’格式(es6语法)

    function formatDate(date,fmt) { if (/(y+)/ .test(fmt)){ fmt = fmt.replace(RegExp.$1,(date.getFullYear()+'').substr(4-RegExp.$1 .length)); } let o = { 'M+':date.getMonth() + 1 , 'd+' :date.getDate(), 'h+' :date.getHours(), 'm+' :date.getMinutes(), 's...

    2018-06-24 01:09:47

  • Vue 组件开发demo

    1、代码地址 github:https://github.com/MengFangui/VueComponentDemo- 2、关键代码 (1)main.js // 引入vue import Vue from 'vue' ;import App from './app.vue' ; var app = new Vue({ el: '#app' , // 虚拟DOM render: h = { return h(App) }}); (2)app.vue temp...

    2018-06-24 01:09:42

  • JS实现放大镜特效

    放大镜代码 : 1 ! DOCTYPE html 2 html lang ="en" 3 head 4 meta charset ="UTF-8" 5 title Document / title 6 style 7 * { 8 padding : 0 ; 9 margin : 0 ; 10 } 11 #smallbox { 12 top : 20px ; 13 left : 30px ; 14 float : left ; 15 border : 1px solid #eee ;...

    2018-06-24 01:09:32

  • AngularJS路由使用案例

    AngularJS路由使用案例: 1 ! DOCTYPE html 2 html 3 head 4 meta charset ="UTF-8" 5 title AngularJS路由使用案例 / title 6 script type ="text/javascript" src ="../js/angular.min.js" / script 7 script type ="text/javascript" src ="../js/angular-route.min...

    2018-06-24 01:09:41

  • .21-浅析webpack源码之事件流this-compilation

    上一节生成Compilation实例后,添加了一些属性,随后触发this-compilation事件流,如下: Compiler.prototype.newCompilation = (params) = { // new Compilation() const compilation = this .createCompilation(); compilation.fileTimestamps = this .fileTimestamp...

    2018-06-24 01:09:30

  • 前端MVC Vue2学习总结(二)——Vue的实例、生命周期

    一、Vue的实例 1.1、创建一个 Vue 的实例 每个 Vue 应用都是通过 Vue 函数创建一个新的 Vue 实例开始的: var vm = new Vue({ // 选项 }) 虽然没有完全遵循 MVVM 模型,Vue 的设计无疑受到了它的启发。因此在文档中经常会使用 vm (ViewModel 的简称) 这个变量名表示 Vu...

    2018-06-24 01:09:29

2