博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
requirejs 学习笔记 0
阅读量:5791 次
发布时间:2019-06-18

本文共 1187 字,大约阅读时间需要 3 分钟。

hot3.png

require.config({	waitSeconds : 12,	paths:{		jquery : "https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery",		async : "../js/async", //alias to plugin		bootstrap : "../js/bootstrap",		fresh: "../themes/fresh",		color:"../js/color_module"	},	shim : {		'bootstrap': {deps:['jquery']}		}});require(['jquery','bootstrap'],function($, _bootstrap){		$("a").tooltip({      'selector': '',      'placement': 'top'    });    //console.log("Olof");	//return {};});require(['async!http://maps.google.com/maps/api/js?sensor=false', 'fresh'],function(){        var mapDiv = document.getElementById('map');    var map = new google.maps.Map(mapDiv, {        center: new google.maps.LatLng(37.4419, -122.1419),        zoom: 13,        mapTypeId: google.maps.MapTypeId.ROADMAP,        navigationControl: true,        navigationControlOptions: {            style: google.maps.NavigationControlStyle.SMALL        },        styles: gmapFreshStyle    }); });// require(['color'],function(color){// 	return color;// });

主要是尝试一下 requirejs

说不好的感觉 javascript 天生的缺陷 一览无余

google maps api ---> require.js plugin "async!"

bootstrap:tooltip ---> jquery + bootstrap

转载于:https://my.oschina.net/huasolna/blog/135087

你可能感兴趣的文章
数据结构化与保存
查看>>
[SpringBoot] - 配置文件的多种形式及优先级
查看>>
chrome浏览器开发者工具之同步修改至本地
查看>>
debian7 + wheezy + chromium + flashplayer
查看>>
AOP
查看>>
进阶开发——文档,缓存,ip限速
查看>>
vue中子组件需调用父组件通过异步获取的数据
查看>>
uva 11468 - Substring(AC自己主动机+概率)
查看>>
Mysql 数据备份与恢复,用户创建,授权
查看>>
沉思录
查看>>
Angular.js中的$injector服务
查看>>
构建之法读书笔记01
查看>>
linux - lsof 命令最佳实践
查看>>
kafka性能测试
查看>>
现实世界的Windows Azure:h.e.t软件使用Windows Azure削减50%的成本
查看>>
深入.net框架
查看>>
聚合类新闻client产品功能点详情分析
查看>>
js设置定时器
查看>>
数据库除运算
查看>>
LeetCode--112--路径总和
查看>>