当前位置: 首页>>代码示例>>PHP>>正文


PHP Import::js方法代码示例

本文整理汇总了PHP中Import::js方法的典型用法代码示例。如果您正苦于以下问题:PHP Import::js方法的具体用法?PHP Import::js怎么用?PHP Import::js使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Import的用法示例。


在下文中一共展示了Import::js方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/plugins/CSSPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/easing/EasePack.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenLite.min.js"></script>
<script src="http://s0.2mdn.net/ads/studio/Enabler.js" type="text/javascript"></script>	
<?php 
Import::js("client/jquery/jquery-1.8.2.min.js");
Import::js("client/jquery/jquery.tmpl.js");
Import::css("index.css", [wUber => false]);
Import::css("Reset.css");
/*Import::js("client/greensock/minified/plugins/CSSPlugin.min.js"); 
	Import::js("client/greensock/minified/easing/EasePack.min.js"); 
	Import::js("client/greensock/minified/TweenLite.min.js");*/
Import::js("client/ejohn/Class.js");
Import::cUtils("Trace.php");
Import::cUtils("ThrowError.php");
Import::cUtils("Visibility.php");
Import::modules("base/Base.php");
Import::uber("client/werm/macys/Project_Collapse.php");
Import::uber("client/werm/macys/Project_Expand.php");
Import::uber("client/werm/macys/Project_Expand_Shell.php");
Import::uber("global/js/Global.php");
Import::uber("client/werm/macys/Macys_svg.php");
Import::js("project/js/data.js", [wUber => false]);
开发者ID:awwthentic1234,项目名称:hey,代码行数:23,代码来源:default_import.php

示例2:

<?php

echo Import::js("project/svg/RTW_DDPurple0815_svg.js", [wUber => false]);
echo Import::css("project/css/RTW_300x250_DDPurple0815.css", [wUber => false, concat => ""]);
?>
<link href='https://fonts.googleapis.com/css?family=BenchNine:700|Lato:700' rel='stylesheet' type='text/css'>
<script id = "RTW_300x250_DDPurple0815" type="text/x-jQuery-tmpl">
	<div class = "collapse content"> 
	
	  <!-- Main Images -->
	  <div class="item_0">
		  <img src = "project/images/collapse/RTW_0826_img_0_300x250.jpg">
	  </div>
	  <div class="item_1">
		  <img src = "project/images/collapse/RTW_0826_img_1_300x250.jpg">
	  </div>
	  <div class="item_2">
		  <img src = "project/images/collapse/RTW_0826_img_2_300x250.jpg">
	  </div>
	  <!-- Text -->
	  
	  <div class="txt_sm">PURPLE REIGN</div>
	  <div class="txt_sm_1">OFFICE CHIC</div>
	  <div class="txt_sm_2">OWN THE NIGHT</div>
	  
	  <!-- CTA Button -->
	  <div class = "cta_shell" class="red-white">
		  <p>SEE THE COLLECTION</p>
	  </div>
	  <div id="macysLogo" class="black"></div>
	
开发者ID:awwthentic1234,项目名称:hey,代码行数:30,代码来源:RTW_300x250_DDPurple0815.php

示例3: center

<?php

Import::cUtils("HideShowOnMouse.php");
Import::css("video-js.css", [concat => "client/video-js/"]);
echo Import::js("client/video-js/video.js");
Import::modules("item/Item_v1_0.php");
Import::cUtils("DivUtil.php");
Import::cUtils("CanvasUtil.php");
Import::cUtils("ResizeUtil.php");
Import::tmpl("Item_v20.html");
?>
<style>
	.item_v20 .replay {
		width:100px;
		height:30px;
		position:absolute;
		@include center();
		display:none;
	}
</style>
</style>
<script type="text/javascript">
var Item_v20 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//init var
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
	//Boolean
	//---------------------------------------------------------
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:Item_v20.php

示例4:

<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/plugins/CSSPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/easing/EasePack.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenLite.min.js"></script>
<script src="http://s0.2mdn.net/ads/studio/Enabler.js" type="text/javascript"></script>	
<?php 
Import::js("client/jquery/jquery-1.8.2.min.js");
Import::js("client/jquery/jquery.tmpl.js");
Import::css("index.css", false);
Import::css("Reset.css");
/*Import::js("client/greensock/minified/plugins/CSSPlugin.min.js"); 
	Import::js("client/greensock/minified/easing/EasePack.min.js"); 
	Import::js("client/greensock/minified/TweenLite.min.js");*/
Import::js("client/ejohn/Class.js");
Import::cUtils("Trace.php");
Import::cUtils("ThrowError.php");
Import::cUtils("Visibility.php");
Import::modules("base/Base.php");
Import::uber("client/werm/macys/Project_Collapse.php");
Import::uber("client/werm/macys/Project_Expand.php");
Import::uber("client/werm/macys/Project_Expand_Shell.php");
Import::uber("global/js/Global.php");
Import::uber("client/werm/macys/Macys_svg.php");
Import::exJs("project/js/data.js");
开发者ID:awwthentic1234,项目名称:hey,代码行数:23,代码来源:default_import.php

示例5:

<?php

echo Import::css("FormInput_v0.css");
echo Import::tmpl("FormInput_v0.html");
echo Import::js("client/jquery/emulatetab.joelpurra.js");
echo Import::cUtils("CharacterLimit.php");
Import::js("client/kirill/textarea-caret-position.js");
?>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<script type="text/javascript">
var FormInput_v0 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//init var
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
	//*
	//---------------------------------------------------------
	regex:undefined,
	//---------------------------------------------------------
	//Object
	//---------------------------------------------------------
	last_cursor:undefined,
	//---------------------------------------------------------
	//function
	//---------------------------------------------------------
	checkFunctions:undefined,
	onComplete:undefined,
	onFocusOutWithText:undefined,
	//---------------------------------------------------------
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:FormInput_v0.php

示例6:

<?php

Import::css("index.css", false);
Import::css("Reset.css");
?>
	<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/plugins/CSSPlugin.min.js"></script>
	<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/easing/EasePack.min.js"></script>
	<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenLite.min.js"></script>
<?php 
Import::js("client/ejohn/Class.js");
Import::uber("client/werm/efx/TweenEngine.php");
Import::js("client/zepto/zepto.js");
Import::cUtils("Trace.php");
?>

开发者ID:awwthentic1234,项目名称:hey,代码行数:14,代码来源:default_import.php

示例7:

<?php

//------------------------------------------------------------------------
$_GET['compile_id'] = "home";
//--------------------------------------------------------------------
Import::services("compileUpload/CompileUpload");
//--------------------------------------------------------------------
//Import::current("base.php");
Import::modules("form/Form_v20.php");
Import::css("home.scss", ["wUber" => false]);
Import::modules("item/Item_v1_0.php");
Import::js("client/Respond-master/respond.js");
?>
<script>
var Main = Class.extend({
	  ///////////////////////////////////////////////////////////////////////////////////////
	  ///////////////////////////////////////////////////////////////////////////////////////
	  //private var
	  ///////////////////////////////////////////////////////////////////////////////////////
	  ///////////////////////////////////////////////////////////////////////////////////////
	  //---------------------------------------------------------
	  //String
	  //---------------------------------------------------------
	  traceID:undefined, 
	  ///////////////////////////////////////////////////////////////////////////////////////
	  ///////////////////////////////////////////////////////////////////////////////////////
	  //Constructor
	  ///////////////////////////////////////////////////////////////////////////////////////
	  ///////////////////////////////////////////////////////////////////////////////////////
	  init:function() {
	  },
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:index.php

示例8:

<?php

echo Import::js("client/jquery/jRating/jRating.jquery.js");
echo Import::ui("JRating_v0_a.php");
?>
<script type="text/javascript">
var JRating_v0 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//init var
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
	//Number
	//---------------------------------------------------------
	width:170,
	height:30,
	//---------------------------------------------------------
	//$elm
	//---------------------------------------------------------
	$txt:undefined,
	$rating:undefined,
	//---------------------------------------------------------
	//String
	//---------------------------------------------------------
	SUCCESS:"success",
	classID:"JRating_v0",
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//init methods
	///////////////////////////////////////////////////////////////////////////////////////
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:JRating_v0.php

示例9:

<?php

Import::modules("item/Item_v0.php");
Import::modules("checkbox/Checkbox_v0.php");
Import::modules("overlay/Overlay_v0.php");
?>
<!--===================================================================-->
<!--===================================================================-->
<!--javascript imports-->
<!--===================================================================-->
<!--===================================================================-->
<?php 
echo Import::js("client/jquery/jquery.dateFormat-1.0.js");
?>
<script type="text/javascript">
var Item_v2 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//init var
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
	//Boolean
	//---------------------------------------------------------
	autoAlign:false,
	//---------------------------------------------------------
	//Number
	//---------------------------------------------------------
	pad:5,
	//---------------------------------------------------------
	//String
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:Item_v2.php

示例10:

<?php

Import::js("client/jquery/jquery-1.8.2.min.js");
Import::js("client/jquery/jquery.tmpl.js");
Import::cUtils("Visibility.php");
Import::cUtils("GenFun.php");
Import::modules("item/Item_v1_0.php");
Import::modules("overlay/Overlay_v0.php");
Import::cUtils("DOMUtil.php");
Import::modules("iframe/Iframe_v0_0_0.php");
?>
<style>
	.compiler_v0 {
		height:100%;
	}
	.compiler_v0 .iframe_v0_0_0 {
		padding-top: 60px;
	}
</style>
<script>
var Compiler_v0_cls = Base.extend({
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//private var
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
	//Item_v1_0
	//---------------------------------------------------------
	compileBut:undefined,
	//---------------------------------------------------------
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:Compiler_v0.php

示例11:

<!--===================================================================-->
<!--===================================================================-->
<!--javascript-->
<!--===================================================================-->
<!--===================================================================-->
<?php 
echo Import::js("client/swfobject/swfobject.js");
echo Import::cUtils("LoadFlash.php");
echo Import::tmpl("Richmedia_v0.html");
?>
<style>
	.richmedia_v0 {
		margin:auto;
		position:relative;
		margin-top:40px;
	}
	#collapse {
		position:absolute;
		right:0;
	}
	#expand {
		position:absolute;
		right:0;
	}
</style>
<script type="text/javascript">
var Richmedia_v0 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////////////
	//Init var
	///////////////////////////////////////////////////////////////////////////////////////
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:Richmedia_v0.php

示例12:

<?php

echo Import::js("client/jquery/fileTree/jqueryFileTree.js");
echo Import::css("client/jquery/fileTree/jqueryFileTree.css", [concat => ""]);
echo Import::modules("item/Item_v1_0.php");
?>
<!--===================================================================-->
<!--===================================================================-->
<!--javascript imports-->
<!--===================================================================-->
<!--===================================================================-->
<script type="text/javascript">
var FileTree_v0 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//init var
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
	//String
	//---------------------------------------------------------
	classID:"FileTree_v0",
	FILE_SELECTED:"file_selected",
	path:"../../../../../generated_files/videoOrganizer_v0/new_files/",
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//constructor
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	init:function(obj, preStart_init) {
		this._super(obj, preStart_init);
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:FileTree_v0.php

示例13:

<?php

echo Import::modules("menu/Menu_v0.php");
echo Import::js("global/js/data.js", ['wUber' => false]);
开发者ID:awwthentic1234,项目名称:hey,代码行数:4,代码来源:menu_v0_init.php

示例14:

<script type="text/javascript" src= "http://maps.google.com/maps/api/js?sensor=true"></script>
<?php 
echo Import::js("client/jquery/google_maps/jquery.ui.map.min.js");
echo Import::js("client/jquery/google_maps/jquery.ui.map.microformat.min.js");
echo Import::js("client/jquery/google_maps/jquery.ui.map.services.min.js");
Import::modules("item/Item_v1_0.php");
?>
<!--===================================================================-->
<style>
	.googleMaps_v0 > #streetview{
		width:100%;
		height:100%;
	}
	.googleMaps_v0 > .closeBut{
		position:absolute;
		top:0;
		right:0;
	}
	.googleMaps_v0 .infoBox{
		height:20px;
	}
</style>
<!--===================================================================-->
<script type="text/javascript">
var GoogleMaps_v0 = Base.extend({
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//init var
	///////////////////////////////////////////////////////////////////////////////
	///////////////////////////////////////////////////////////////////////////////
	//---------------------------------------------------------
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:GoogleMaps_v0.php

示例15:

<?php

echo Import::modules("itemMenu/ItemMenu_v0_4_1_1.php");
?>
<!--===============================================================-->
<?php 
echo Import::js("global/js/data.js", [wUber => false]);
?>
<!--===============================================================-->
<?php 
Import::js("client/jquery/jqXMLUtils.js");
?>
<!--===============================================================-->
<style>
	.mouseObjectSlide_v0 {
		width:300px;
		height:250px;
	}
	.itemMenu_v0_4_1_1 {
		width:500px;
		height:226px;
	}
</style>
<script>
var Main = Class.extend({
	  ///////////////////////////////////////////////////////////////////////////////////////
	  ///////////////////////////////////////////////////////////////////////////////////////
	  //private var
	  ///////////////////////////////////////////////////////////////////////////////////////
	  ///////////////////////////////////////////////////////////////////////////////////////
	  //---------------------------------------------------------
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:index.php


注:本文中的Import::js方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。