Posts by Alisson Almeida • 96 points
10 posts
-
1
votes0
answers26
viewsQ: Sharing on Instagram
I was giving a beautiful on the new instagram API https://developers.facebook.com/docs/instagram-api/ and I realized it doesn’t contain some of the resources that I see around. Can anyone tell me…
-
-1
votes1
answer85
viewsQ: Elements running away from the mouse
personal someone knows some plugin or how to make an effect on javascript similar to this? https://newtemplate.net/demo/event4/template/particles.html However I want the following I want some svg…
-
1
votes1
answer109
viewsQ: smooth scrolling with pure javascript
I’m studying pure javascript to get out of jquery a little so I’m trying to recreate simple functions that I use on a day-to-day basis and one of them is the smoothing of the scroll but I found…
javascriptasked Alisson Almeida 96 -
1
votes2
answers526
viewsA: Webservice PHP+JSON - How to read return
$retorno = json_decode($jsonRet); $status = $retorno->data->status;
-
0
votes2
answers60
viewsA: How do I show information from a particular location, viewing in responsive mode, on mobile?
Come on try the following: in css .container-map{ position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } now in html put the iframe inside the div .container-map…
-
1
votes2
answers526
viewsA: Webservice PHP+JSON - How to read return
try this $retorno = json_decode($jsonRet); $status = $retorno['data']['status'];
-
1
votes1
answer325
viewsQ: print Eventemitter data at angular 2
personal ask me a question I researched more did not find answer yet I have an object inside a auth.service The code of the.Component app import { Component} from '@angular/core'; import {…
-
0
votes0
answers44
viewsQ: server does not return data I send with angular2
the code of the Component onSubmit(form){ var success = false; var error = false; this.http.post(`http://localhost/api/`, JSON.stringify(form.value)) .map(res => res) .subscribe(dados =>…
-
1
votes2
answers794
viewsA: Change page title with angular2
staff I managed to solve with the following code const routes: Routes = [{ path: 'calendar', component: CalendarComponent, children: [ { path: '', redirectTo: 'new', pathMatch: 'full' }, { path:…
-
1
votes2
answers794
viewsQ: Change page title with angular2
I am developing a site in angular2, as I do not have an in depth knowledge I am having difficulties in SEO, following the documentation I created a simple function public constructor(private…