|
|
Texte dans la page d'accueil de Art et artisanat asiatique-décoration asiatique chinoise japonaise et tibétaine-feng shui-RUYI
décoration artisanat asiatique chinois japonais tibétain fengshui art bouddhiste zen asie chine
function gotobrand(ident){
document.location="http://www.ruyi-france.com/achat/brand.php?"+ident;
}
function gotocategorie(ident){
document.location="http://www.ruyi-france.com/achat/index.php?catid="+ident;
}
Accueil |
Mon compte |
S'identifier | S'enregistrer |
Votre panier |
Contact
Votre panier est vide.
Tentures asiatiques
Tentures petite taille (15) Tentures porte-courrier (15) Tentures taille moyenne (32) Tentures grande taille (24) Peinture sur batik (24) Batiks sur rouleau (29) Batiks à encadrer (35) Nappes en batik (15) Peignes en bois (56) Peignes en corne (12) Peignes en coffret (26) Bien-être et Fengshui (33) Éventails (83) Poupées asiatiques
Poupées de minorités chinoises en lin (46) Poupées chinoises et japonaises en soie (28) Accessoires de mode (74) Art de la table (96) Services à thé (5) Chemins de table (36) Housses de coussin (50) Boîtes à bijoux
Boîtes à bijoux en bois (29) Boîtes en laque (10) Boîtes en porcelaine (7) Boîtes à bijoux en tissu (10) Bijoux asiatiques
Colliers (23) Colliers et pendentifs (15) Bracelets asiatiques (15) Miroirs de poche (17) Objets de décoration (25) Papiers découpés chinois
Signes du zodiaque chinois (12) Masques d'opéra de Pékin (25) Paysage et nature de Chine (19) Scènes de vie chinoises (28) Enfants chinois (20) Porte-bonheur chinois (18) Collections de Chine (3) personnages chinois (37) Peintures paysannes (20) Lampions asiatiques (16) Statuettes asiatiques (22) Peintures chinoises
Rouleaux à suspendre (18) Tableaux à encadrer (39) Affiches (7)
Rechercher un produit
var pausecontent=new Array()
pausecontent[0]='Eventail - Lotus12,00 €'
pausecontent[1]='Poupée chinoise - Zhaojun39,00 €'
pausecontent[2]='Tenture batik asiatique - Rêve19,00 €'
pausecontent[3]='Assiette impériale en laque dragon72,00 €'
pausecontent[4]='Coupe impériale chinoise19,00 €'
pausecontent[5]='Papier découpé chinois9,00 €'
pausecontent[6]='Tenture batik chinois-Guerriers38,00 €'
pausecontent[7]='Peigne et miroir-Yuan27,00 €'
pausecontent[8]='Peigne en bois décoré rose11,50 €'
pausecontent[9]='Tenture batik chinois-Femme, flûte et hérons19,00 €'
pausecontent[10]='Tenture batik tibétain-Au plateau du Tibet18,00 €'
/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write(''+content[0]+''+content[1]+'')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}
pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}
pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
new pausescroller(pausecontent, "pscroller1", "someclass", 3000)
Comment commander Frais de port et livraison Paiement sécurisé Suivi de commande Confidentialité Qui sommes-nous Espace professionnel Liens partenaires Culture Chinoise Culture Japonaise Conditions de vente
Votre E-mail :
Paiement sécurisé via Paypal
Livraison sous 24 heures
Bienvenue chez RUYI, boutique d'artisanat chinois et asiatique. Nous vous invitons à découvrir le meilleur de l'artisanat de décoration et de bien-être de la Chine. Tentures petite tailleTentures porte-courrierTentures taille moyenneTentures grande taillePeinture sur batikBatiks à encadrerBatiks sur rouleauNappes en batikPeignes en boisPeignes en cornePeignes en coffretBien-être et FengshuiÉventailsPoupées asiatiquesAccessoires de modeServices à théArt de la tableChemins de tableHousses de coussinBoîtes à bijouxBijoux asiatiquesMiroirs de pocheObjets de décorationPapiers découpés chinoisPeintures paysannesLampions asiatiquesStatuettes asiatiquesPeintures chinoisesAffiches NouveautésBougeoir ¨Bouddha¨bouddha porte bougie Prix : 15,50 € T.T.C
Peinture chinoise - Diaochanpeinture chinoise Prix : 4,50 € T.T.C
Affiche ¨Le Président Mao¨affiche chinoise Prix : 9,00 € T.T.C
Chausse pied en boischausse pied chinois Prix : 19,00 € T.T.C
Statuette bouddhabouddha asiatique Prix : 24,00 € T.T.C
Porte crayons 9 dragonsdécoration asiatique Prix : 21,00 € T.T.C
Conditions de vente |
Frais de port et livraison |
Confidentialité |
Contact |
Espace pro |
Liens partenaires
Site réalisé par RUYI SARL et PEEL en partenariat avec La Chine et le chinois- copyright (c) RUYI 2006-2008 - siren 490 472 693 - R.C.S Créteil France
Les liens dans Art et artisanat asiatique-décoration asiatique chinoise japonaise et tibétaine-feng shui-RUYI
http://www.ruyi-france.com/index.php http://www.ruyi-france.com/compte.php http://www.ruyi-france.com/achat/caddie_affichage.php http://www.ruyi-france.com/utilisateurs/contact.php http://www.ruyi-france.com/cgv.php http://www.ruyi-france.com/cgv.php http://www.ruyi-france.com/lire/index.php?rubid=1 http://www.ruyi-france.com/lire/index.php?rubid=11 http://www.ruyi-france.com/utilisateurs/contact.php http://www.ruyi-france.com/utilisateurs/retailer.php http://www.ruyi-france.com/lire/index.php?rubid=10 http://www.peel.fr/ http://www.chine-informations.com/ |
| |
|
|